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

import helloworld

# die Funktion "hello" des Moduls "helloworld" aufrufen
helloworld.hello()

# den DOC-String von "hello" ausgeben
print(helloworld.hello.__doc__)

# Funktion help nutzen
help(helloworld)
