


Format:
set @VARIABLE to {"string" | @VARIABLE};
The set command assigns a value to a variable. The value can be a constant string of characters or the value of another variable.
Example:
set @GREETING to "Hello"; // Stores "Hello" in @GREETING
set @SAYHI to @GREETING; // Stores "Hello" in @SAYHI


