home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Whiteline: Alpha
/
Whiteline Alpha.iso
/
progtool
/
eiffel
/
vici
/
examples
/
list.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1994-09-22
|
214 b
|
23 lines
class list
feature
next: list;
item: integer;
create(i: integer) is
do
put(i)
end;
put(i:integer) is
do
item:=i
end;
add(n: list) is
do
next:=n
end;
end