factor/extra/benchmark/empty-loop-2/empty-loop-2.factor

11 lines
214 B
Factor
Raw Normal View History

2008-08-24 04:59:22 -04:00
USING: math math.private kernel sequences ;
IN: benchmark.empty-loop-2
: empty-loop-2 ( n -- )
<iota> [ drop ] each ;
2008-08-24 04:59:22 -04:00
: empty-loop-2-benchmark ( -- )
50000000 empty-loop-2 ;
2008-08-24 04:59:22 -04:00
MAIN: empty-loop-2-benchmark