Skip to content

Instantly share code, notes, and snippets.

@dlongmuir
Created January 6, 2014 01:37
Show Gist options
  • Save dlongmuir/8276819 to your computer and use it in GitHub Desktop.
Save dlongmuir/8276819 to your computer and use it in GitHub Desktop.
(and (odd? 5) (odd? 7))
(or (odd? 4) (odd? 7))
(def *is-it-even* (atom nil))
(or (odd? 4) (reset! *is-it-even* true))
@*is-it-even*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment