Miscellaneous Control Structures

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

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