From 6e59c73028a8524df5eee4ec2720b16345c6ed8a Mon Sep 17 00:00:00 2001 From: dotslash-web <55626127+dotslash-web@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:50:47 +0530 Subject: [PATCH] Create hello_world.py --- 1st_edition/intro/hello_world.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 1st_edition/intro/hello_world.py diff --git a/1st_edition/intro/hello_world.py b/1st_edition/intro/hello_world.py new file mode 100644 index 0000000..6656364 --- /dev/null +++ b/1st_edition/intro/hello_world.py @@ -0,0 +1,3 @@ +# Let's print something cool ! + +print("Hello World here i come")