GOTO - source-solutions/HELP GitHub Wiki

GOTO


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.

Parameters

  • line_number is an existing line number literal.
  • Further characters on the line are ignored until end of statement.

Notes

No spaces are allowed between GO and TO.

Errors

  • line_number does not exist: Undefined line number.
⚠️ **GitHub.com Fallback** ⚠️