Variables are assigned using the = prefix operator.
=
Syntax: = <identifier> <expression>
= <identifier> <expression>
# Sets variable `num` to 3.2 = num 3.2 # Sets `x` to the result of (5 + 2) = x + 5 2 # Referencing a variable evaluates to its value x