Please send questions to st10@humboldt.edu .
# Module lect13_1
# a tiny example module
#   modified from "Learning Python", Lutz and Ascher, O'Reilly,
#   pp. 173-174
#
# adapted by: Sharon M. Tuttle
# last modified: 11-19-05

spam = 40

def square(val):
    return val ** 2