factor/library/test/benchmark/sort.factor

14 lines
235 B
Factor
Raw Normal View History

2004-08-23 23:27:55 -04:00
IN: scratchpad
USE: lists
USE: kernel
2004-08-26 22:21:17 -04:00
USE: math
USE: namespaces
2004-08-23 23:27:55 -04:00
USE: random
USE: test
2004-12-17 21:46:19 -05:00
USE: compiler
2004-08-23 23:27:55 -04:00
2004-12-17 21:46:19 -05:00
: sort-benchmark
[ 100000 [ 0 10000 random-int , ] times ] make-list [ > ] sort drop ; compiled
[ ] [ sort-benchmark ] unit-test