In this example a variable will be defined containing a string representing a color and then displayed in the terminal.
Notice:
- A rectangle is used when defining the variable
- A parallelogram is used when outputting to the terminal
# begin program
# set color to 'blue'
color = 'blue'
# print color to the terminal
print(color)
# end program