Source code for iip

# -*- coding: utf-8 -*-

"""
Package iip
=======================================

Top-level package for iip.
"""

__version__ = "0.4.6"


[docs]def hello(who='world'): """'Hello world' method. :param str who: whom to say hello to :returns: a string """ result = "Hello " + who return result
# Your code here...