exit
Keyword
Uses
-
exit repeat
- Terminates the innermost repeat loop within the currently executing handler, causing execution to continue with the next statement following the next
end repeat
statement. - Related Term:
next repeat
- Terminates the innermost repeat loop within the currently executing handler, causing execution to continue with the next statement following the next
-
exit handler
- Terminates the currently executing handler, causing it to exit with no return value and execution to continue in the calling handler.
- Can be called as
exit handler
or asexit
<handlerName> where <handlerName> is the name of the current handler. - Related Term:
return
-
exit all
- Immediately terminates the current script run.
- Can also be called as
exit to SenseTalk
orexit to top