Assignment operators store a value in the variable designated by the left operand.
Expression = Expression
> a = 123
> PRINT a
123
> a = 456
456
> b = INT_ARRAY(5)
> b[2] = 3
> PRINT b
{ 0, 0, 3, 0, 0 }