# a box has an x, y, width and height
x, y, w, h = 100, 100, 800, 800
# set a fill
fill(1, 0, 0)
# draw a rectangle with variables from above
rect(x, y, w, h)
# set a diferent fill
fill(1)
# set a font size
fontSize(200)
# draw text in a text box
# with varibales from above
overflow = textBox("hallo, this text is a bit to long",
                (x, y, w, h), align="center")
# a text box returns text overflow
# text that did not make it into the box
print(overflow)