]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/compiler/tests/curry.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / compiler / tests / curry.factor
index 50888e54c1b43f8501fa752b300102a879093727..1bf5e052d9a7bafccc60458d4a1a977da29e4dbf 100644 (file)
@@ -47,7 +47,7 @@ IN: compiler.tests.curry
     ] { } make ; inline
 
 [ t ] [| |
-    1000 iota [ drop 1,000,000 random 1,000,000 random ] H{ } map>assoc :> a-hashtable
+    1000 <iota> [ drop 1,000,000 random 1,000,000 random ] H{ } map>assoc :> a-hashtable
     a-hashtable [ [ drop , ] funky-assoc>map ] compile-call
     a-hashtable keys =
 ] unit-test