home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / emerald / emrldsys.lha / Language / Compiler / Builtins / Nil.m < prev    next >
Encoding:
Text File  |  1990-08-16  |  292 b   |  14 lines

  1. % @(#)Nil.m    1.1  3/6/87
  2. %
  3. export _NilObject to "Builtins"
  4.  
  5. const _NilObject == immutable object _NilObject
  6.   export getSignature
  7.   const NilType == immutable type NilType
  8.   end NilType
  9.   function getSignature -> [result : Signature]
  10.     result <- NilType
  11.   end getSignature
  12. end _NilObject
  13.