]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/tuple-arrays/tuple-arrays.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / tuple-arrays / tuple-arrays.factor
index 0f5313b41e2ce2e8606fd83ac139a0a3f29da821..1b80330b1695f0dd6babe9bfb87d1726c4f0648c 100644 (file)
@@ -8,7 +8,7 @@ TUPLE: point { x float } { y float } { z float } ; final
 TUPLE-ARRAY: point
 
 : tuple-arrays-benchmark ( -- )
-    1,000 iota [
+    1,000 <iota> [
         drop 5,000 <point-array> [
             [ 1 + ] change-x
             [ 1 - ] change-y