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

11 lines
201 B
Factor
Raw Normal View History

2008-08-24 04:59:22 -04:00
USING: math math.private kernel sequences ;
IN: benchmark.empty-loop-1
: empty-loop-1 ( n -- )
[ drop ] each-integer ;
: empty-loop-main ( -- )
2008-08-31 07:02:15 -04:00
50000000 empty-loop-1 ;
2008-08-24 04:59:22 -04:00
MAIN: empty-loop-main