# File: hello.py # Say hello to Sam and Anne # # Matt Bishop, ECS 10, Fall 2012 # # This prints "hello" def h(): print("Hello,", end=" ") # here we go . . . h(); print("Sam!") h(); print("Anne!")