Variables

Ellie has a very simple syntax for declaring variables.

v x = 5;

Giving a type to a variable is optional.

v x : int = 5;

Constants

For unchangeable variables, you can use the c keyword.

c x : int = 5;