From b779f3ef54bd447202501e70ddca8eb69a48b37d Mon Sep 17 00:00:00 2001 From: Brian Phair Date: Mon, 1 Oct 2018 13:57:57 -0400 Subject: [PATCH] Created hello_world.py Created simple file that prints out "Hello, World!". --- hello-world/hello_world.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello-world/hello_world.py diff --git a/hello-world/hello_world.py b/hello-world/hello_world.py new file mode 100644 index 00000000..26228b2b --- /dev/null +++ b/hello-world/hello_world.py @@ -0,0 +1,5 @@ +def main(): + print("Hello, World!") + + +main()