anaphoric/acond.rkt
2018-01-27 12:05:21 +01:00

19 lines
464 B
Racket

#lang racket/base
(provide acond it)
(require anaphoric/it
racket/stxparam
(for-syntax racket/base))
(define-syntax (acond stx)
(syntax-case stx (else)
[(_ [else . else-body])
#'(begin . else-body)]
[(_)
#'(void)]
[(_ [condition . body] . rest)
#'(let ([tmp condition])
(if tmp
(syntax-parameterize ([it (make-rename-transformer #'tmp)])
. body)
(acond . rest)))]))