'''
Created on Sep 14, 2017

@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 
    # sample function to draw a right angle
    turt.forward(100)
    turt.left(90)
    turt.forward(100)
    
def draw():
    # create a turtle and draw a right angle
    alex = turtle.Turtle()    # you can rename the turtle if you want
    rightAngle(alex)   
 
if __name__ == '__main__':
    # main function to have a turtle draw a picture 
    draw() 


    wn.exitonclick()        # Must be last line in file
