GOTO

To continue program execution at a specified branch label, issue a GOTO command.

	GOTO [startLoop]

Do not use GOTO to exit a FOR/NEXT or WHILE/WEND loop prematurely.

GOSUB

To continue program execution at a specifed GOSUB routine, issue a GOSUB command.  The GOSUB routine ends with a RETURN statement that returns program execution to the line of code following the GOSUB command.

	GOSUB [initialize]

RETURN

This statement causes program execution to continue at the next statement after a GOSUB command was issued.  RETURN is the last statement in a block of code that is called by the GOSUB command.

NOTE: Branch labels inside functions and subroutines are not visible to code outside those functions and subroutines.  Likewise, functions and subroutines cannot use branch labels defined outside their scope.