aboutsummaryrefslogtreecommitdiff
path: root/module/exceptions.scm
blob: 027c75eed6ed6ad9e860f0c049e5102d567be39f (plain)
1
2
3
4
5
(define-module (exceptions)
  #:export (throw-returnable))

(define-syntax-rule (throw-returnable symb args ...)
  (call/cc (lambda (cont) (throw symb cont args ...))))