Assignment Statement Syntax
       Variable  =  Expression;
First, Expression on right is evaluated.
Then the resulting value is stored in the memory
location of Variable on left.
NOTE:  The value assigned to Variable must be of
the same type as Variable.