]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/csv/csv.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / csv / csv.factor
index e5df41e1d2c00121840c875a581979c69e91b67a..a430db8798c4f09b9a57cd1f7f9d674847aff73e 100644 (file)
@@ -4,7 +4,7 @@ USING: arrays csv kernel math.parser sequences ;
 IN: benchmark.csv
 
 : csv-benchmark ( -- )
-    1,000 200 iota [ number>string ] map <array>
+    1,000 200 <iota> [ number>string ] map <array>
     [ csv>string string>csv ] keep assert= ;
 
 MAIN: csv-benchmark