home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 231_01 / temp.st < prev    next >
Encoding:
Text File  |  1987-06-17  |  128 b   |  9 lines

  1. Class Main
  2. [
  3.     main        | i |
  4.  
  5.         i <- 1.
  6.         [i < 3] whileTrue: [i print. i <- i + 1]
  7. ]
  8.  
  9.