Skip to content

Instantly share code, notes, and snippets.

@bjhaid
Created April 7, 2014 01:12
Show Gist options
  • Select an option

  • Save bjhaid/10013436 to your computer and use it in GitHub Desktop.

Select an option

Save bjhaid/10013436 to your computer and use it in GitHub Desktop.
tail call optimization (factorial)
(defn fact ([n] (fact n 1))
([n mul] (if (< n 1) mul (fact (dec n) (*' n mul)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment