# this is the simplest turtle script
# note that because of the way namespaces work with the exec
# it isn't possible to just do
# t = tWrapper(dc_local)
# without the tWrapper=tWrapper define in the drawMain arg list

# if it would be possible using a different exec methodology
# i would love to hear about it

from tWrapper import tWrapper

def drawMain(dc_local, w, tWrapper=tWrapper):
    t = tWrapper(dc_local)
    t.cls()
    t.forward(100)
    t.write("Hello Turtle")
