home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
DNeStr
/
link.e
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1999-06-05
|
227 b
|
23 lines
class LINK[E]
creation make
feature
value: E;
next: LINK[E];
make(v: like value; n: like next) is
do
value := v;
next := n;
end;
set_next(n: like next) is
do
next := n;
end;
end