EXAMPLE: GOTO 1000
GOTO #7
GOTO *Finish
PARAMETERS:
1. Branch destination line number: integer in the range of 1≤ line number ≤65535
2. Program area number: single character, 0-9
3. Label: Name of a label in the program.
EXPLANATION:
1. Specifying a line number causes program execution to jump to that line
number in the current program area.
2. Specifying a program area number causes program execution to jump to the
first line number of the specified program area.
3. Specifying a label name causes program execution to jump to that label in the
current program area.
4. An “UL error” is generated when the specified line number or label name does
not exist.