| var Variable = Value; | Global Commands | 
| Arguments | Variable | the name of a variable. Must begin with a character (a-z, A-Z) | 
| Value | the value of a variable. May be a number (note that the decimal character is the dot), a string which must be enclosed in double quotes ("string") or a boolean value (true or false). As usual, terminate the line with a semi-colon ";". | |
| Description | Defines a 
    variable. The contents of any defined variable can later be referred to by using its name. | |
| Remarks | Example: 
 NOTES: | |