# drawturtle.py # Walker M. White (wmw2) # September 9, 2012 """Example program that draws using the turtle""" from cturtle import * def draw_triangle(): w = Window() # Make window t = Turtle(w) # Make a turtle for that window # Draw with turtle t.forward(30) t.left(120) t.forward(30) t.left(120) t.forward(30) t.left(120)