ERASE

ERASE var[, var[, … var]]

Deallocates the memory used by the specified arrays or variables. After that these variables turned to simple integers with zero value.

Example

DIM x(100)

x(1) = 1
x(2) = 2

ERASE x

PRINT x(1)    ' This will create an error
Data
If there is insufficient information on this page and you wish learn more about ERASE, please send an email to smallbasic@gmail.com. You can help to improve information about ERASE by submitting a pull request, click View Source for details. Note, an offline language reference text file is also available - see the Download section.