DELETE

PURPOSE:
To remove lines from the currently loaded program.
STATEMENT SYNTAX:
DELETE {stnoa}{,}{stnob}
where:
stnoa = the number of a statement to be removed or the first of a series of statements to be removed.
stnob = the number of the last of a series of statements to be removed.
EXAMPLE:
DELETE		Removes all lines from the program
DELETE 10		Removes line 10 from the program
DELETE 200,299	Removes lines 200 through 299
DELETE ,123456	Removes all lines below 123457
DELETE 99800,	Removes all lines above 99799