# Author: Scott Wehrwein
# Date: 04/26/2021
# A program demonstrating our first function definition.

print_hello()

def print_hello():
    print("Hello, world!")
    
print_hello()
print_hello()