# Arup Guha
# First function example.
# 2/24/2020

# This is a function definition.
def main():
    print("hi")


# Comment this out and see that nothing happens
# This is a function call.
main()

