Skip to content

Instantly share code, notes, and snippets.

@wilkes
Created March 16, 2010 15:51
Show Gist options
  • Save wilkes/334121 to your computer and use it in GitHub Desktop.
Save wilkes/334121 to your computer and use it in GitHub Desktop.
(defn fact2 [x]
(let [x (if (<= x 1) 1 x)]
(apply * x (range 1 x))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment