python-kurs-softed/beispiele/hallowelt2.py

14 lines
191 B
Python
Raw Normal View History

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