EXIT
This command allows you to break from a program loop at any time. Only control loops that have an uncertain exit condition can use this command such as DO LOOP, WHILE and REPEAT loops. EXIT will have no effect on GOTO loops during the running of your program.

SYNTAX
EXIT

RELATED INFO
Basic Commands
Glossary

EXAMPLE
LOOP Commands