Miscellaneous Control Structures

GOTO Unconditional jump.
GOSUB
Seit 3.1
Call a local subroutine.
ON GOTO
Seit 3.2
Computed unconditional jump.
ON GOSUB
Seit 3.2
Computed local subroutine call.
QUIT Quits the program.
RETURN Return from a procedure or a function.

Seit 3.1
Return from a GOSUB subroutine.
STOP Simulates a breakpoint.
WITH ... END WITH Default object selector.