Do-until

From GMpedia.org Wiki

Jump to: navigation, search

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)

[edit] See Also

Personal tools