]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/parse-bignum/parse-bignum.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / parse-bignum / parse-bignum.factor
index 856a1a0f40668cb0d7f3d03560b2fa21a206f528..33077555dab2f0930144960b0ab73867f22672d8 100644 (file)
@@ -2,7 +2,7 @@ USING: kernel math math.parser sequences ;
 IN: benchmark.parse-bignum
 
 : parse-bignum-benchmark ( -- )
-    3000 iota [
+    3000 <iota> [
         2^ [ number>string string>number ] [ assert= ] bi
     ] each ;