diff options
author | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2023-08-01 15:57:41 +0200 |
---|---|---|
committer | Hendrik Jäger <gitcommit@henk.geekmail.org> | 2023-08-01 15:57:41 +0200 |
commit | b29578cfb78db8b0db20f2baa580f8a80edd243c (patch) | |
tree | e4b33cbf7fe23af6541bcc7c0321758aee0d8013 |
simplest program: print hello world
-rwxr-xr-x | src/hello/hello.py | 3 |
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') |