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

  1. Class Main
  2. [
  3.      main
  4.           88 print.
  5.           3.14159 print.
  6.           'this is it' print.
  7.           #(this is also it) print.
  8.           88 respondsTo: #+ ; print.
  9.           Object respondsTo.
  10.           smalltalk at: 3 put: #(22 17).
  11.           (smalltalk at: 3) print.
  12.           Smalltalk respondsTo.
  13. ]
  14.