Program loop
DO
[UNTIL|WHILE] <boolean expression> <instructions>
LOOP [UNTIL|WHILE] <boolean expression>
General loop. This program loop can have a condition at begin or end of the loop. If the keyword WHILE is used, the loop is executed while the boolean expression is TRUE. With the keyword UNTIL the loop is executed until the boolean expression is TRUE.
|