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

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