home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_show / cecil / example4 / cat.e < prev    next >
Encoding:
Text File  |  1999-06-05  |  67 b   |  9 lines

  1. class CAT inherit ANIMAL
  2.  
  3. feature
  4.  
  5.    cry: STRING is "MEOW";
  6.  
  7. end
  8.  
  9.