factor/extra/benchmark/continuations/continuations.factor

8 lines
174 B
Factor
Raw Normal View History

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