undim

Syntax

undim array [ ]

Description

This command will delete the specified array from memory. You must have previously created the array using the dim command in order for undim to succeed. Deleting unused arrays increases system performance.

Example

dim myArray [ 10 ]
myArray [ 5 ] = 123
undim myArray [ ]