]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/combinatorics/combinatorics.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / combinatorics / combinatorics.factor
index ce7c26bddc9a6bee1e1625c4dab2a48b1771e0a3..ac925117e980274730f066fb09a37fb1097bf676 100644 (file)
@@ -17,7 +17,7 @@ IN: benchmark.combinatorics
     ] with each ;
 
 : bench-permutations ( n -- )
-    iota {
+    <iota> {
         [ all-permutations drop ]
         [ [ drop ] each-permutation ]
         [ [ first 2 = ] find-permutation drop ]