home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 018.lha / prelude / nil.st < prev    next >
Text File  |  1986-10-19  |  150b  |  12 lines

  1. Class UndefinedObject
  2. [
  3.         isNil
  4.                 ^ true
  5. |
  6.         notNil
  7.                 ^ false
  8. |
  9.         printString
  10.                 ^ 'nil'
  11. ]
  12.