continuations.bm 203 B

12345678910
  1. (define-module (benchmarks continuations)
  2. :use-module (benchmark-suite lib))
  3. (define (callee continuation)
  4. (continuation #t))
  5. (benchmark "call/cc" 12000
  6. (call-with-current-continuation callee))