diff options
author | mail_redacted_for_web | 2025-08-20 09:59:42 +0200 |
---|---|---|
committer | mail_redacted_for_web | 2025-08-20 09:59:42 +0200 |
commit | 865e3aabe2d1f46a9c3692e8d51eb4379d7cc970 (patch) | |
tree | 86cc747bf72a802f185dd517708d6f70b895d0a1 /project_dummy/hemlo_world.py | |
download | python-skeleton-865e3aabe2d1f46a9c3692e8d51eb4379d7cc970.tar.bz2 |
Initial Commit
Diffstat (limited to 'project_dummy/hemlo_world.py')
-rw-r--r-- | project_dummy/hemlo_world.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/project_dummy/hemlo_world.py b/project_dummy/hemlo_world.py new file mode 100644 index 0000000..44f4fb9 --- /dev/null +++ b/project_dummy/hemlo_world.py @@ -0,0 +1,15 @@ +#!/usr/bin/env python3 +"""Hello.""" + + +def hemlo(): + """Hello!. + + Yeah, there's your fucking period, 's if an exclamation + mark were not the end of a sentence!!1!eleven + """ + return 'hemlo world (づ^•ω•^)づ' + + +if __name__ == '__main__': + print(hemlo()) |