JUMPS TO THE PART OF PROGRAM WHICH BEGINS BY "L:"
ACTION
The command makes program execution jump to the location called "L".
L is a label and must be defined by the keyword LABEL.
SYNTAX:
GOTO L
USE ERROR EXAMPLE
dim a,b
label addition
a=1:b=1
goto addition
end
addition:
print a+b
GOTO
GOTO L
SEE ALSO
LABEL