Manual

exit
98
exit
Descriptions
Terminate the inner-most active loop.
Usage
exit
Comments
The exit operator allows the programmer to prematurely terminate a loop. The operator terminates
only the inner-most active loop. Since the loop operator includes no termination condition for the
loop it creates, the programmer must use the exit operator to terminate a loop created by the loop
operator. The
exit
operator will also terminate loops created by the
for
and
repeat
operators.