From f61f7d3c221132da2b95b90e7922202bf7267a25 Mon Sep 17 00:00:00 2001 From: Bob Stockdale Date: Tue, 24 Oct 2023 19:31:59 -0400 Subject: [PATCH] feat: hello world in python --- hello_world.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 hello_world.py diff --git a/hello_world.py b/hello_world.py new file mode 100755 index 0000000..d6916ce --- /dev/null +++ b/hello_world.py @@ -0,0 +1,3 @@ +#! /usr/bin/env python + +print("Hello World!")