Definition

#!/usr/bin/env python

def plus( x, y):
    """a documentation string (plus.__doc__)"""
    return x + y

print( plus( 3, 5))