View on GitHub

Concert

Concert is an imperative, concurrent, strongly typed scripting language

Download this project as a .zip file Download this project as a tar.gz file

Home Keywords

Keyword while

Descrption

Declares a while loop. Used to execute a statement, or statements, repeatedly.

Example

int startIndex = 0;
const int TARGET_INDEX = 10;

while startIndex < TARGET_INDEX;
    println "Looping... index is: ", startIndex;
end;