Loops

Currently as of ISI [[isiVersionCommit:[[isiVersion]]]] There is only the while() loop.

The while() loop executes the code inside it's brackets until the condition
is false.
int i = 0;
while (i < 10){
    i = i + 1;
    print(i, "\n");
}
This will output:
1
2
3
4
5
6
7
8
9
10
You can also use 'break;' to exit out of the loops. [[docVersion]] [[isiVersionCommit:A2]]