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

10 lines
198 B
Racket

#lang racket/base
(provide when-let)
(require (for-syntax racket/base))
(define-syntax-rule (when-let [variable condition] . body)
(let ([variable condition])
(when variable
. body)))