Variable

Declaration and assignment in Pyr use the same syntax.

foo = "bar"

To access a variable, use the following syntax.

print(var_name) # prints "bar"