Control Statements

STOP statements
STOP
stops the exception and then lets the program finish.


GOTO statements
GOTO line_number
lets the control go to the line of line_number.

Note.
The control must not be transferred by a GOTO statement as follows.
・From outside to inside of a block.
・From inside to outside of an internal procedure.
・From inside to outside of an exception handling block.