Loop statements

repeat n [instructions]
foreach x collection [instructions]
for [i start stop step] [instructions]
while condition [instructions]
until condition [instructions]
do.while [instructions] condition
do.until [instructions] condition
forever [instructions]

repcount - iteration counter
break - exit from a loop

See also:

Table of Content