Skip to content

Instantly share code, notes, and snippets.

@maruks
Last active May 23, 2016 17:35
Show Gist options
  • Save maruks/df911a946a7046bfe7c4b7884f0b78bf to your computer and use it in GitHub Desktop.
Save maruks/df911a946a7046bfe7c4b7884f0b78bf to your computer and use it in GitHub Desktop.
anaphoric macro
(define-syntax (aif stx)
(syntax-case stx ()
[(_ expr then else)
(with-syntax ([it (datum->syntax stx 'it)] )
#'(let ((it expr))
(if it then else)))]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment