GOTO Command

PPCL command that unconditionally transfers control to another location in the program. GOTO is commonly used to skip over subroutines and blocks of code. GOTO is used to control program execution by branching to a different section of the program.

If you want to transfer control to a subroutine in the program and return to the same line when the subroutine is complete, use the GOSUB command.