Skip to content

Instantly share code, notes, and snippets.

@alex-eg
Created May 25, 2016 08:22
Show Gist options
  • Select an option

  • Save alex-eg/9127f3a03b4e6aba0a8516e9cdcc07af to your computer and use it in GitHub Desktop.

Select an option

Save alex-eg/9127f3a03b4e6aba0a8516e9cdcc07af to your computer and use it in GitHub Desktop.
(defmacro case-char (c &body body)
(let ((conditions (mapcar (lambda (branch)
(list (list 'char= c (car branch))
(cadr branch)))
body)))
`(cond ,@conditions)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment