home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / AACD / Programming / sofa / archive / SmallEiffel.lha / SmallEiffel / lib_show / animal / chien.e < prev    next >
Text File  |  1999-06-05  |  136b  |  13 lines

  1. class CHIEN
  2.  
  3. inherit QUADRUPEDE;
  4.  
  5. feature {ANY}
  6.  
  7.    crier is
  8.       do
  9.          std_output.put_string("OUARF");
  10.       end;
  11.  
  12. end -- CHIEN
  13.