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