do ... until
Syntax
DO instruction UNTIL expression
OR:
DO {
instruction
instruction
...
} UNTIL expression
Meaning
The instruction or the instruction block is carried out at least once. If the expression is FALSE, it is repeated until the expression is TRUE.
See also
Click here for more information on conditional loops.