"""
Author: Your Name, login@purdue.edu
Assignment: mm.n - Assignment Name
Date: MM/DD/YYYY

Description:
    Describe your program here.

Contributors:
    Name, login@purdue.edu [repeat for each]

My contributor(s) helped me:
    [ ] understand the assignment expectations without
        telling me how they will approach it.
    [ ] understand different ways to think about a solution
        without helping me plan my solution.
    [ ] think through the meaning of a specific error or
        bug present in my code without looking at my code.
    Note that if you helped somebody else with their code, you
    have to list that person as a contributor.

Academic Integrity Statement:
    I have not used source code obtained from any unauthorized
    source, either modified or unmodified; nor have I provided
    another student access to my code.  The project I am
    submitting is my own original work.
"""

"""Import additional modules below this line (starting with unit 6)."""
from turtle import *

"""Write new functions below this line (starting with unit 4)."""


def start():
    """This function initializes the window and the turtle.
    Do not modify this function or any of the properties it sets.
    """
    setup(600, 400)
    width(9)
    color("purple")


def draw_a():
    """Write this function."""


def draw_e():
    """Write this function."""


def draw_L():
    """Write this function."""


def draw_o():
    """Write this function."""


def draw_p():
    """Write this function."""


def draw_S():
    """Write this function."""


def draw_s():
    """Write this function."""


def draw_T():
    """Write this function."""


def draw_t():
    """Write this function."""


def main():
    """After these lines, call your letter drawing functions as needed to draw
    the words "Steps To Leaps".
    """


"""Do not change anything below this line."""
if __name__ == "__main__":
    start()
    main()
    done()
