From GMpedia.org Wiki
The repeat-until statement is identical to the do-until loop.
[edit] Syntax
Syntax in Psuedo code is as follows:
REPEAT
statements
UNTIL (condition)
The statements are repeated constantly until condition is true.
[edit] See Also