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

11 lines
193 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 -- )
[ drop ] each ;
: empty-loop-main ( -- )
50000000 empty-loop-2 ;
2008-08-24 04:59:22 -04:00
MAIN: empty-loop-main