diff options
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()) |