File size: 203 Bytes
3dcad1f |
1 2 3 4 5 6 7 8 9 10 |
(define-module (benchmarks continuations)
:use-module (benchmark-suite lib))
(define (callee continuation)
(continuation #t))
(benchmark "call/cc" 12000
(call-with-current-continuation callee))
|