"""
A module with a function definition

Author: Walker M. White (wmw2)
Date:   August 25, 2017 (Python 3 Version)
"""

def plus(n):
    """
    Returns: the value of n+1
    """
    print('Hello')
    return (n+1)
print('World')
