Name: Anonymous 2009-07-02 15:20
Can you recommend any?
# xtianftw.py
import time, sys
def run_program(code):
print "Asking God to do what you mean."
time.sleep(10)
print "Oh, looks like God doesn't give a shit..."
time.sleep(2)
print "Asking Jesus to do what you mean."
time.sleep(12)
print "Oh, looks like Jesus doesn't give a shit either"
time.sleep(2)
print "Well I'm all out of ideas. Why don't you go ask your God what to do?"
return # Deliberately redundant return statement for dramatic effect.
if name == '__main__':
run_program(sys.argv[1])