Home Keywords
Declares a while loop. Used to execute a statement, or statements, repeatedly.
int startIndex = 0; const int TARGET_INDEX = 10; while startIndex < TARGET_INDEX; println "Looping... index is: ", startIndex; end;