CLEAR


The CLEAR statement will initialize all the variables to numeric 0.

 

COMMAND SYNTAX

CLEAR

 

NOTES

CLEAR can be used at any time during the execution of the program.

 

EXAMPLES

Var1 = 99
Var2 = 50
...
...
CLEAR


jBC