home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
lib_show
/
cecil
/
JVM
/
root3.e
< prev
next >
Wrap
Text File
|
1999-06-05
|
322b
|
24 lines
class ROOT3
creation make
feature
make is
-- Dummy root procedure to make some live code.
do
put_string(get_string);
end;
get_string: STRING is
do
Result := "Hi from ROOT3%N"
end;
put_string(s: STRING) is
do
io.put_string(s);
end;
end