Constants

Constant names start with uppercase letters, though as per convention you should keep all characters uppercase.

PHI = 1.61803
# PHI += 42 # => Cannot reassign to constant.

You can declare constants at the top level or inside other types, however the value of a constant cannot be mutated.