Christopher Arndt b0d671321d Add helloworld examples
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
2024-05-06 00:49:00 +02:00

14 lines
191 B
Python

#!/usr/bin/env python3
#
# hallowelt2.py
#
"""Gebe einen Gruß aus."""
def hello():
"""Gebe "Hallo, Welt!" aus.
"""
print("Hallo, Welt!")
if __name__ == '__main__':
hello()