home *** CD-ROM | disk | FTP | other *** search
/ Really Useful CD 1 / ReallyUsefulCD1.iso / extras / languages / smalltalk / _smalltalk / tests / cond < prev    next >
Encoding:
Text File  |  1987-12-30  |  241 b   |  11 lines

  1. Class Main
  2. [
  3.      main           | i |
  4.           ((2 < 3) ifTrue: ['correct']) print.
  5.           (2 < 3) ifTrue: ['correct' print ].
  6.           i <- 1.
  7.           [i < 3] whileTrue: [i <- i + 1].
  8.           (i >= 3) ifTrue: ['correct' print]
  9. ]
  10.  
  11.