DELETE - source-solutions/HELP GitHub Wiki
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.
-
line_number_0
andline_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.
-
line_number_0
orline_number_1
is greater than65529
: Syntax error. - The range specified does not include any program lines stored: Illegal function call.