diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..588ebd3 --- /dev/null +++ b/hello.py @@ -0,0 +1,5 @@ +def print_hello(): + print("Hello World") + +if __name__ == "__main__": + print_hello()