# File: hello.py # Say hello to Sam and Anne # # Matt Bishop, MHI 289I, Winter 2018 # # This prints "hello" def h(): print "Hello,", # here we go . . . h() print "Sam!" h() print "Anne!"