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