]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/splitting/splitting.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / splitting / splitting.factor
index 55351b20821b92df7f1695ca88e650a0eddd0815..fb3dc4f722a66a987f8b4754b9cba95071cf1052 100644 (file)
@@ -2,7 +2,7 @@ USING: kernel math sequences splitting ;
 IN: benchmark.splitting
 
 : test-data ( -- seq seps )
-    1000 iota dup [ 10 /i zero? ] filter ; ! not inline to prevent type inference
+    1000 <iota> dup [ 10 /i zero? ] filter ; ! not inline to prevent type inference
 
 : splitting-benchmark ( -- )
     test-data 2,000 [