# L-10 MCS 507 Wed 13 Sep 2023 : hellopython.py

"""
Defines a simple python module to be called by Julia.
"""

def say_hello():
    print("Python says hello!")

if __name__ == '__main__':
    say_hello()
