diff --git a/python/helloWorld.py b/python/helloWorld.py new file mode 100644 index 0000000000000000000000000000000000000000..2367c96faeb51825e3cd5e6b3d099487040bd65a --- /dev/null +++ b/python/helloWorld.py @@ -0,0 +1,5 @@ +def main(): + print("Hello Python World!") + +if __name__ == "__main__": + main()