We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Basically the 'while' loops work the same is in pure Lua with the only difference that you do not use the keyword 'do'.
init int a = 1 while a<=10 print(a) a++ end end
I don't think that I need to explain the working of WHILE any further to an experienced coder.