]> git.netwichtig.de Git - user/henk/code/python/learn_python.git/commitdiff
simplest program: print hello world
authorHendrik Jäger <gitcommit@henk.geekmail.org>
Tue, 1 Aug 2023 13:57:41 +0000 (15:57 +0200)
committerHendrik Jäger <gitcommit@henk.geekmail.org>
Tue, 1 Aug 2023 13:57:41 +0000 (15:57 +0200)
src/hello/hello.py [new file with mode: 0755]

diff --git a/src/hello/hello.py b/src/hello/hello.py
new file mode 100755 (executable)
index 0000000..ee18b25
--- /dev/null
@@ -0,0 +1,3 @@
+#!env python3
+
+print('Hello World')