symbol | The name of a previously declared user-defined symbol. |
expression | The expression whose value to assign to the symbol. |
The #SET statement assigns the value of the expression to the symbol, overwriting any previous value the symbol had contained.
Example:
#DECLARE(MySymbol); //declare a symbol named "MySymbol"
#SET(MySymbol,11); //initialize MySymbol to 11
OUTPUT(%'MySymbol'%)