home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Python 1.4 / twit / twittest.py < prev   
Encoding:
Text File  |  1996-08-13  |  142 b   |  14 lines  |  [TEXT/Pyth]

  1. # Test program
  2.  
  3. def foo(arg1, arg2):
  4.     bar(arg1+arg2)
  5.     bar(arg1-arg2)
  6.     foo(arg1+1, arg2-1)
  7.     
  8. def bar(arg):
  9.     rv = 10/arg
  10.     print rv
  11.     
  12. foo(0,10)
  13.  
  14.