From: Hendrik Jäger Date: Tue, 1 Aug 2023 13:57:41 +0000 (+0200) Subject: simplest program: print hello world X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=b29578cfb78db8b0db20f2baa580f8a80edd243c;p=user%2Fhenk%2Fcode%2Fpython%2Flearn_python.git simplest program: print hello world --- b29578cfb78db8b0db20f2baa580f8a80edd243c 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')