Ellie has a very simple syntax for declaring variables.
v x = 5;
Giving a type to a variable is optional.
v x : int = 5;
For unchangeable variables, you can use the c keyword.
c
c x : int = 5;