Do-until
From GMpedia.org Wiki
The function of the do-until loop exists in other languages, it is almost the opposite of the do-while loop. Instead of doing as long as the expression it true, it loops until the expression is true.
[edit] Syntax
Syntax in Psuedo code is as follows:
DO <expression> UNTIL (condition)

