IN A LOOP REPEAT/UNTIL, JUMPS TO THE STATEMENT JUST AFTER UNTIL
ACTION
The command EXIT_REPEAT ends a loop REPEAT/UNTIL by executing the statement just after UNTIL. It must belong to a loop REPEAT/UNTIL, and must be between a REPEAT and an UNTIL statements.
SYNTAX:
EXIT_REPEAT
USE ERROR EXAMPLE
dim a%
a%=0
repeat
print a%
a%=a%+1
if a%=5 then exit_repeat
until a%=10
EXIT_REPEAT
EXIT_REPEAT
SEE ALSO
REPEAT
UNTIL
EXIT_FOR
EXIT_REPEAT