basic/doc/statements/
delete.rs

1/*!
2# `DELETE [<line number range>]`
3
4## Purpose
5Delete lines from the BASIC program currently in memory.
6
7## Remarks
8You must specify a line or range.
9
10## Example
11```text
12DELETE          ' ?ILLEGAL FUNCTION CALL
13DELETE 120      ' Only line 120.
14DELETE 100-     ' All from 100 to the last.
15DELETE -100     ' All up to and including 100.
16DELETE 500-600  ' Only lines 500 to 600 inclusive.
17```
18
19*/