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