Skip to content

Instantly share code, notes, and snippets.

@hexgnu
Created August 16, 2011 06:21
Show Gist options
  • Save hexgnu/1148527 to your computer and use it in GitHub Desktop.
Save hexgnu/1148527 to your computer and use it in GitHub Desktop.
Kind of a heavy handed way to get even...
(defn is-even? [n]
(if (= n 0)
true
(not (is-even? (dec n)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment