]> gitweb.factorcode.org Git - factor.git/blob - 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
1 ! Copyright (C) 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: math sequences kernel ;
4 IN: benchmark.gc1
5
6 : gc1-benchmark ( -- ) 600000 <iota> [ >bignum 1 + ] map drop ;
7
8 MAIN: gc1-benchmark