home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 21 / AACD 21.iso / AACD / Programming / amigatalk / general / UndefinedObject.st < prev   
Encoding:
Text File  |  2000-02-14  |  312 b   |  16 lines

  1. "----------------------------------------------------------------"
  2. "'nil' Should be the only Undefined Object in the system.        "
  3. "----------------------------------------------------------------"
  4.  
  5. Class UndefinedObject :Object
  6. [
  7.    isNil
  8.      ^ true
  9. |
  10.    notNil
  11.      ^ false
  12. |
  13.    printString
  14.      ^ 'nil'
  15. ]
  16.