Variables

Creating new variables can be done just by using the = symbol.

Example:

a = 1;
b = 2;
c = a + b;

Currently there is no garbage collection, but if you want you can manually delete variables with:

a = 1;
unset a;