1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/*!
# `ERASE [<array variable>][,<array variable>...]`

## Purpose
Erases a dimensioned array.

## Remarks
Arrays may be redimensioned after they are erased.

## Example
```text
10 DIM A$(10,10)
20 ERASE A$
30 A$(5) = "Five"
```

*/