summaryrefslogtreecommitdiff
path: root/src/hello/hello.py
diff options
context:
space:
mode:
authorHendrik Jäger <gitcommit@henk.geekmail.org>2023-08-01 15:57:41 +0200
committerHendrik Jäger <gitcommit@henk.geekmail.org>2023-08-01 15:57:41 +0200
commitb29578cfb78db8b0db20f2baa580f8a80edd243c (patch)
treee4b33cbf7fe23af6541bcc7c0321758aee0d8013 /src/hello/hello.py
simplest program: print hello world
Diffstat (limited to 'src/hello/hello.py')
-rwxr-xr-xsrc/hello/hello.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/hello/hello.py b/src/hello/hello.py
new file mode 100755
index 0000000..ee18b25
--- /dev/null
+++ b/src/hello/hello.py
@@ -0,0 +1,3 @@
+#!env python3
+
+print('Hello World')