home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
PLk
/
bench.e
< prev
next >
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
|
374 b
|
37 lines
class BENCH
creation
make
feature
peach: PEACH;
apple: APPLE;
make is
local
i, limit: INTEGER
do
limit := 70_000_000
from
i := 0
until
i > limit
loop
!!apple.make(i)
i := i + 1
end
apple := Void
from
i := 0
until
i > limit
loop
!!peach.make(i)
i := i + 1
end
end
end