benchmark.make: use % (push-all).

John Benediktsson 2012-04-20 10:51:51 -07:00
parent 6e915bfcf7
commit b33772377c
1 changed files with 2 additions and 2 deletions

View File

@ -9,10 +9,10 @@ IN: benchmark.make
[ [ CHAR: a , ] times ] "" make ;
: make-arrays ( n -- seq )
[ iota [ , ] each ] { } make ;
[ iota % ] { } make ;
: make-vectors ( n -- seq )
[ iota [ , ] each ] V{ } make ;
[ iota % ] V{ } make ;
: make-benchmark ( -- )
5,000 iota [