# set a canvas size
size(200, 200)
# print out the size of the page
print((width(), height()))

# set a color
fill(1, 0, 0)
# use those variables to set a background color
rect(0, 0, width(), height())