Example Program Structure

"""
Triple-quote comment at the top that includes a short description
of what the program does. Includes name of author and date.

Sally CS Major
Sept. 7, 2021
"""

def main():
    print()
    print("-----------------------------------------")
    print("All programs should have a main function!")
    print("-----------------------------------------")
    print()

main()