home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / apps / 191a / examples / temp.st < prev    next >
Encoding:
Text File  |  1993-06-26  |  91 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.