factor/extra/benchmark/continuations/continuations.factor

8 lines
187 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: math kernel continuations ;
IN: benchmark.continuations
: continuations-benchmark ( -- )
1,000,000 [ drop [ continue ] callcc0 ] each-integer ;
2007-09-20 18:09:08 -04:00
MAIN: continuations-benchmark