]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/hash-sets/hash-sets.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / hash-sets / hash-sets.factor
index cef4f996220ab7c0fa31f6c529934ebdb0054b25..8e4b8d49ad0202eb61750c2d774fa73922da7c04 100644 (file)
@@ -6,7 +6,7 @@ IN: benchmark.hash-sets
 
 CONSTANT: test-sets $[
     { 10 100 1,000 10,000 50,000 100,000 }
-    [ iota >hash-set ] map dup append
+    [ <iota> >hash-set ] map dup append
 ]
 
 : do-times ( n quot: ( set1 set2 -- set' ) -- )