'''
Created on Sep 3, 2014

@author: YOUR NAME HERE
'''
import turtle               # allows us to use the turtles library                                         
wn = turtle.Screen()        # creates a graphics window                                                    
                                           
                                                                                   

def rightAngle(turt):       # This function is a sample, you can delete it 
    turt.forward(100)
    turt.left(90)
    turt.forward(100)
    
def draw():
    alex = turtle.Turtle()    # you can rename the turtle if you want
    rightAngle(alex)   
 
if __name__ == '__main__':
    draw() 

wn.exitonclick()
