# # simple program that creates a quote() function # and then calls it. # # e.bonakdarian mar 2010 # def quote(): # our simple quote print 'Time flies like an arrow;' print 'fruit flies like bananas' quote() raw_input('\n to exit')