Assignment Syntax
<variable> = <expression> ;
Note well: “=” does not mean equality in Java
Think of x = y as “Assign y to x” or “x becomes y” or “x gets the value of y”
Think of x == y as “x equals y”
The expression “x==y” yields true if x and y contain the same value, false otherwise