factor/extra/benchmark/random/random.factor

10 lines
177 B
Factor
Raw Normal View History

USING: kernel math random ;
2008-02-27 20:24:50 -05:00
IN: benchmark.random
: random-benchmark ( -- )
1,000,000 [
200 random random-unit random-32 3drop
] times ;
2008-02-27 20:24:50 -05:00
MAIN: random-benchmark