#lets us use all the functions in module turtle and module time
from turtle import *
import time

## use this space to write directions to turtle


#indicate the program has finished drawing
up()
goto(100,100)
write('Done')

#wait for 10 seconds before closing the window
time.sleep(10)
exit()