Assignment (=) Statement
An assignment statement is how you put a value into a variable.
The variable must have been previously declared with a
dim statement.
The new value must match the type of the variable.
It overwrites any existing value.
Syntax
- <VARIABLE> is the name of the existing variable to assign to.
- <VALUE> is the new value to put into the variable.
Usage
The following trivial example shows the basic usage.
dim myVariable = 5
print myVariable
myVariable = 6
print myVariable