home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
LkROInc
/
bench.e
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
|
362 b
|
33 lines
class BENCH
creation
make
feature
array_int: ARRAY[INTEGER]
make is
local
size: INTEGER
i: INTEGER
do
from
i := 150;
until
i = 0
loop
from
size := 0
until
size = 5000
loop
!!array_int.make(0,size)
size := size + 1
end
i := i - 1
end
end
end