############################################################################## # hello.py # # Jeff Ondich, 1/3/07 # # This is Python's version of the traditional 'hello, world' program. # To run this program from the command line, cd to the directory containing # hello.py and execute the command: # # python hello.py # ############################################################################## print 'hello, world'