size(1000, 600)
# a long dutch word
word = "paardenkop"
# a box where we draw in
box = (100, 50, 400, 500)
# set font size
fontSize(118)
# enable hyphenation
hyphenation(True)
# draw the text with no language set
textBox(word, box)
# set language to dutch (nl)
language("nl")
# shift up a bit
translate(500, 0)
# darw the text again with a language set
textBox(word, box)