From b29578cfb78db8b0db20f2baa580f8a80edd243c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Hendrik=20J=C3=A4ger?= Date: Tue, 1 Aug 2023 15:57:41 +0200 Subject: [PATCH] simplest program: print hello world --- src/hello/hello.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 src/hello/hello.py 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') -- 2.39.2