Skip to content

Instantly share code, notes, and snippets.

@awostenberg
Created March 30, 2012 05:00
Show Gist options
  • Save awostenberg/2246634 to your computer and use it in GitHub Desktop.
Save awostenberg/2246634 to your computer and use it in GitHub Desktop.
facto
(defn facto [n] (if (= 1 n) 1 (* n (facto (dec n)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment