home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 018.lha / examples / basic.st < prev    next >
Text File  |  1986-10-19  |  234b  |  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.