Skip to content

Instantly share code, notes, and snippets.

@rahulkmr
Created July 26, 2012 14:49
Show Gist options
  • Select an option

  • Save rahulkmr/3182490 to your computer and use it in GitHub Desktop.

Select an option

Save rahulkmr/3182490 to your computer and use it in GitHub Desktop.
(defn fact-iter [product counter max-count]
(if (> counter max-count)
product
(recur (* counter product) (inc counter) max-count)))
(defn factorial [n]
(fact-iter 1 1 n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment