Create a named variable with a value.
# obj [name] = [value]
obj example = "Whoa, this is a variable!";
The value of an object can also be modified by shadowing its name.
obj x = 10;
x = 20; # x is now 20