t334.py 213 B

12345678910111213141516171819202122
  1. print "One"
  2. if 1 > 10:
  3. exit
  4. print "Two"
  5. if 1 > 10:
  6. quit
  7. print "Three"
  8. if 1 > 10:
  9. exit(-1)
  10. print "Four"
  11. if 1 > 10:
  12. quit(42)
  13. print "Five"
  14. if 1 < 10:
  15. quit()
  16. print "This should never appear"