# hellomain.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 and # is called main() by convention. # def main(): print "hello there" main()