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