Skip to content

Instantly share code, notes, and snippets.

@akhileshs
Created April 11, 2015 17:06
Show Gist options
  • Select an option

  • Save akhileshs/1c4d1d0b0198caa301bd to your computer and use it in GitHub Desktop.

Select an option

Save akhileshs/1c4d1d0b0198caa301bd to your computer and use it in GitHub Desktop.
factorial
user=> (def ! #(reduce * (take % (iterate inc 1))))
#'user/!
user=> (! 5)
120
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment