]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/benchmark/gc1/gc1.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / benchmark / gc1 / gc1.factor
index d18c4a8261555c8d47d77b591f108bf426fb0c5d..68be9402ddec102bc59aed77dc1352960d2a2d19 100644 (file)
@@ -3,6 +3,6 @@
 USING: math sequences kernel ;
 IN: benchmark.gc1
 
-: gc1-benchmark ( -- ) 600000 iota [ >bignum 1 + ] map drop ;
+: gc1-benchmark ( -- ) 600000 <iota> [ >bignum 1 + ] map drop ;
 
 MAIN: gc1-benchmark