Created
January 19, 2015 21:41
-
-
Save kineticz/cfc44a1d7d2f96decfd5 to your computer and use it in GitHub Desktop.
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
| ;; compound interest with the -> macro | |
| (defn final-amount-> [principle rate time-periods] | |
| (-> rate | |
| (/ 100) | |
| (+ 1) | |
| (Math/pow time-periods) | |
| (* principle))) | |
| (final-amount-> 100 20 1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment