home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
lib_show
/
animal
/
sample2.e
< prev
next >
Wrap
Text File
|
1999-06-05
|
270b
|
21 lines
class SAMPLE2
creation {ANY}
make
feature {ANY}
chat: CHAT;
mille_pattes: MILLE_PATTES;
make is
do
!!chat;
!!mille_pattes;
chat.felicitations(chien);
mille_pattes.felicitations(chat);
end;
end -- SAMPLE2