Do-while
From GMpedia.org Wiki
The function of the do-while loop is identical to that of the while loop, the only difference between them is in the syntax.
[edit] Syntax
Syntax in Psuedo code is as follows:
DO-WHILE (condition) <expression> END-WHILE

