Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created February 19, 2014 15:23
Show Gist options
  • Save AeroNotix/9094190 to your computer and use it in GitHub Desktop.
Save AeroNotix/9094190 to your computer and use it in GitHub Desktop.
(defmacro allnd [& pairs]
(let [pairs (partition 2 pairs)]
`(and ~@(for [pair pairs]
`(= ~(first pair) ~(second pair))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment