factor/apps/benchmarks/sort.factor

8 lines
173 B
Factor
Raw Permalink Normal View History

IN: temporary
2005-08-14 01:17:25 -04:00
USING: compiler kernel math sequences test ;
2004-08-23 23:27:55 -04:00
2004-12-17 21:46:19 -05:00
: sort-benchmark
100000 [ drop 100000 random-int ] map natural-sort drop ;
2004-12-17 21:46:19 -05:00
[ ] [ sort-benchmark ] unit-test