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