]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/sum-file/sum-file.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / sum-file / sum-file.factor
index b7b37d09b698d85c7a8f69a871f01f8200ac1a68..893619669aecaed20e58f24ae92fec25e86ea5dc 100644 (file)
@@ -4,7 +4,7 @@ IN: benchmark.sum-file
 
 <<
 "sum-file.txt" temp-file ascii [
-    100000 iota [ number>string print ] each
+    100000 <iota> [ number>string print ] each
 ] with-file-writer
 >>