home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel PPC / lib_show / animal / sample2.e < prev    next >
Encoding:
Text File  |  1996-06-13  |  387 b   |  24 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class SAMPLE2
  5.    
  6. creation {ANY}
  7.    make
  8.    
  9. feature {ANY}
  10.    
  11.    chat: CHAT;
  12.    
  13.    mille_pattes: MILLE_PATTES;
  14.    
  15.    make is
  16.       do
  17.      !!chat;
  18.      !!mille_pattes;
  19.      chat.felicitations(chien);
  20.      mille_pattes.felicitations(chat);
  21.       end; 
  22.    
  23. end -- SAMPLE2
  24.