D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
api
/
vendor
/
scrivo
/
highlight.php
/
test
/
markup
/
pony
/
Filename :
control-flow.txt
back
Copy
if a == b and b == a then env.out.print("they are the same") elseif a > b or b < a then env.out.print("a is bigger") else env.out.print("b bigger") end while count <= 10 do env.out.print(count.string()) count = count + 1 end for name in ["Bob"; "Fred"; "Sarah"].values() do env.out.print(name) end repeat env.out.print("hello!") counter = counter + 1 until counter > 7 end