]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/msgpack/msgpack.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / msgpack / msgpack.factor
index 010839b4f11b33a70e52d7833355b10c0bcb01f1..bbd70c738b5199166ac6f991279934b295b73e91 100644 (file)
@@ -8,7 +8,7 @@ IN: benchmark.msgpack
     [ >msgpack msgpack> length ] map-sum ;
 
 : msgpack-benchmark ( -- )
-    500,000 iota pack-sum 124,999,750,000 assert=
+    500,000 <iota> pack-sum 124,999,750,000 assert=
     500,000 "hello" <repetition> pack-sum-lengths 2,500,000 assert=
     500,000 pi <repetition> pack-sum 0x1.7f7ec53a9f04ap20 assert= ;