Creates a new variable in the current class. Does not search outside the class for any existing variable of the same name. Normally the #VAR command will search for existing variables and modify their value rather than creating a new variable. You can force #VAR to create a variable in the current class by using the syntax:
#VAR ./varname value
#NEWVAR is a shortcut for this syntax, but is a bit more efficient.
NEWVAR examples
#CLASS 0 #VAR A 1 #CLASS NewClass #NEWVAR A 123 creates a new variable @A within the current class (NewClass in this example) with a value of 123. Does not modify the existing @A variable like the #VAR command would.