home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Programming
/
sofa
/
archive
/
SmallEiffel.lha
/
SmallEiffel
/
misc
/
benchmarks
/
gc
/
LkROSm
/
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
|
310 b
|
32 lines
class BENCH
creation make
feature
s: STRING
make is
local
i, j: INTEGER;
do
from
i := 350_000;
until
i = 0
loop
from
j := 80;
until
j = 40
loop
!!s.make(j);
j := j - 1;
end;
i := i - 1;
end;
end;
end