home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / Salsa 0.3 / s < prev    next >
Encoding:
Text File  |  1996-05-01  |  90 b   |  12 lines  |  [TEXT/ttxt]

  1. def p(x)
  2. {
  3.     print(x," ");
  4.     thread p(x+1);
  5.     thread p(x+1);
  6. }
  7.  
  8. def main()
  9. {
  10.     thread p(0);
  11. }
  12.