basic/doc/statements/
erase.rs

1/*!
2# `ERASE [<array variable>][,<array variable>...]`
3
4## Purpose
5Erases a dimensioned array.
6
7## Remarks
8Arrays may be redimensioned after they are erased.
9
10## Example
11```text
1210 DIM A$(10,10)
1320 ERASE A$
1430 A$(5) = "Five"
15```
16
17*/