Command Reference
:
Programming Language Summary
exitloop
Program Statements
Exit from current loop in programs.
exitloop
causes the program to break out of the current FOR or WHILE loop.
Syntax
Command:
exitloop
Examples
for !i=1 to 107
if !i>6 then exitloop
next
Cross-references
See
“The FOR Loop”
. See also,
stop
,
return
,
for
,
next
,
step
.