From 865902276f5f09692a0e57f3b760f377f656cacb Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Sat, 22 Dec 2018 10:38:46 -0500 Subject: [PATCH] Created hello world program --- HelloWorld.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 HelloWorld.py diff --git a/HelloWorld.py b/HelloWorld.py new file mode 100644 index 0000000..5d802b5 --- /dev/null +++ b/HelloWorld.py @@ -0,0 +1,3 @@ +#This is a simple hello world program in python +#It just prints Hello World to the terminal +print("Hello World") \ No newline at end of file