Assignment statement. This is used to create a variable if one does not yet exist, and give it a value. If the variable already exists, this will overwrite the old value with the new one.
x = 2.4 y = 3 * x
==.