Datasets:

License:
mike dupont
update
3dcad1f
raw
history blame
203 Bytes
(define-module (benchmarks continuations)
:use-module (benchmark-suite lib))
(define (callee continuation)
(continuation #t))
(benchmark "call/cc" 12000
(call-with-current-continuation callee))