UNTIL
These commands will define a loop that will repeat until the Condition becomes true. Unlike the WHILE command, the repeat loop allows the command sequence within your loop to run at least once before the Condition is checked. You are able to break from the loop at any time by using the EXIT command.
SYNTAX
UNTIL Condition
RELATED INFO
CORE Commands Menu
Index
EXAMPLE
View Showcase Example
View Usage Example