Jumps
The following statements execute jumps.
GoSub...Return Statement
Calls a subroutine that is indicated by a label from a subroutine or a function. The statements following the label are executed until the next Return statement. Afterwards, the program continues with the statement that follows the GoSub statement.
GoTo Statement
Continues program execution within a Sub or Function at the procedure line indicated by a label.
On...GoSub Statement; On...GoTo Statement
Branches to one of several specified lines in the program code, depending on the value of a numeric expression.