append speed
- Posted by =?iso-8859-2?B?qWtvZGE=?= <tone.skoda at SIOL.NET> May 19, 2000
- 557 views
is append() function slow?
is repeat() function much faster?
is this:
for i=1 to 100 do
s=append(s,0)
end for
much slower than this:
s=repeat(100,0)
and how much slower is it?
Anybody has any special set of functions for benchmarking, measuring the
speed of functions?

