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.
Barbara Liskov
Sep. 9, 2025
"""
def main():
print()
print("-----------------------------------------")
print("All programs should have a main function!")
print("-----------------------------------------")
print()
main()
And here is a link to some information about the 2008 Turing Award winner Barbra Liskov.