GOTO - source-solutions/HELP GitHub Wiki
GOTO line_number [anything]
Jumps to line_number
. Anything after line_number
until the end of the statement
is ignored. If executed from a direct line, GOTO
starts execution of the program
at the specified line.
-
line_number
is an existing line number literal. - Further characters on the line are ignored until end of statement.
No spaces are allowed between GO
and TO
.
-
line_number
does not exist: Undefined line number.