basic/doc/statements/
clear.rs

1/*!
2# `CLEAR [...]`
3
4## Purpose
5Clear all variables.
6
7## Remarks
8This statement will ignore any options. Other versions of basic use
9these options to define memory limits for the program, stack, strings, etc.
10
11## Example
12```text
13CLEAR
14CLEAR ,16384,1000
15```
16
17*/