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
Jan. 26, 2022
"""
def main():
print()
print("-----------------------------------------")
print("All programs should have a main function!")
print("-----------------------------------------")
print()
main()