Skip to content

Instantly share code, notes, and snippets.

@renanreismartins
Last active August 29, 2015 14:08
Show Gist options
  • Save renanreismartins/dcae402f4c5435e862b5 to your computer and use it in GitHub Desktop.
Save renanreismartins/dcae402f4c5435e862b5 to your computer and use it in GitHub Desktop.
(def fatorialT
(fn [n acc]
(if (= n 0)
acc
(fatorialT (dec n) (* acc n)))))
(prn (fatorialT 5 1))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment