]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/json/json.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / json / json.factor
index 2f6e3f762b16dc2a7826748499b77758cfee0df6..06acfaa4fd52e9610b24f5af9428c5cd12fe9a2c 100644 (file)
@@ -5,7 +5,7 @@ sequences ;
 IN: benchmark.json
 
 : json-benchmark ( -- )
-    200 iota [ [ number>string ] keep ] H{ } map>assoc
+    200 <iota> [ [ number>string ] keep ] H{ } map>assoc
     1,000 [ >json json> ] times drop ;
 
 MAIN: json-benchmark