home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 310_01 / fork.st < prev    next >
Text File  |  1990-04-20  |  145b  |  14 lines

  1. Class Main
  2. [
  3.     loop1
  4.         10 timesRepeat: [17 print]
  5. |
  6.     loop2
  7.         10 timesRepeat: [23 print]
  8. |
  9.     main
  10.         [self loop1] fork.
  11.         self loop2
  12. ]
  13.  
  14.