DELETE LineNumber
Remove the program sequence of LineNumber.
DELETE LineNumber
LineNumber - The line number of the code sequence. Implicitly converted to type integer.
Calling this instruction in a code sequence stops program execution.
If the line number of the code sequence is not valid, output the "Undefined line number" error.
> LIST
10 PRINT "Hello World"
20 GOTO 20
OK
> DELETE 20
OK
> LIST
10 PRINT "Hello World"
OK