REPEAT and 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
REPEAT
Commands Go Here
UNTIL Condition
RELATED INFO
Basic Commands
Glossary
EXAMPLE
LOOP Commands