14 lines
191 B
Python
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()
|