DELETE - source-solutions/HELP GitHub Wiki

DELETE


DELETE [line_number_0|.] [-[line_number_1|.] ]

Deletes a range of lines from the program. Also stops program execution and returns control to the user.

Parameters

  • line_number_0 and line_number_1 are line numbers in the range [0 to 65529], specifying the inclusive range of line numbers to delete.
  • A . indicates the last line edited.
  • If the start point is omitted, the range will start at the start of the program.
  • If the end point is omitted, the range will end at the end of the program.
  • If no range is specified, the whole program will be deleted.

Errors

  • line_number_0 or line_number_1 is greater than 65529: Syntax error.
  • The range specified does not include any program lines stored: Illegal function call.
⚠️ **GitHub.com Fallback** ⚠️