Assigning variables
Before a variable can be used, a value must be assigned to it. Use a single equal sign to assign an expression to a variable; for example,
alpha = 6 + 456 * 3 // alpha now contains 1374
If the variable does not exist, it is created. There are special assignment operators that will assign to existing variables only, and others that combine an arithmetic operation and an assignment.