#!/bin/env python3
# -*- coding: utf8 -*-

"""
Hello World: als Modul oder Programm nutzbar
"""

# Definition der parameterlosen Funktion "hello"
def hello():
    """Funktion hello(): Ausgabe des Strings 'hello world'"""
    print('hello world')

if __name__ == '__main__':
    # die Funktion "hello" ausführen, da der vorliegende Code als Programm
    # gestartet und nicht als Modul importiert wurde
    hello()
