Deletes all variables.
Clear v1[,v2,…]
v1, v2, … : variables
This command cannot be used inside loops or subroutines. A Clear is performed automatically when the program starts up. For arrays use Erase.
Local Int32 x = 2, y = 2
OpenW # 1
Print x, y // Prints 2 2
Clear x, y
Print x, y // Prints 0 0
Synonymous with Clear you can use Clr.
{Created by Sjouke Hamstra; Last updated: 25/09/2014 by James Gaite}