# hellorun.py # Neal Nelson 2009.10.01 # Collaborators: Zelle - I'm working from examples in the Zelle textbook # # hello program to print a message that runs automatically when loaded # def hello(): print "hello there" # automatically run the program when this script is loaded hello()