Created
April 11, 2015 17:06
-
-
Save akhileshs/1c4d1d0b0198caa301bd to your computer and use it in GitHub Desktop.
factorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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