home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / TESTS / LF / T8101.LF < prev    next >
Text File  |  1996-06-04  |  170b  |  10 lines

  1. %
  2. %        Wild_life testing
  3. %
  4. %        Overflow of memory
  5. %
  6. % this program calculates in a dumb way the sum of the N first integers
  7. %
  8. somme(0) -> 0.
  9. somme(N:int) -> N + somme(N-1).
  10.