Created
December 31, 2014 18:31
-
-
Save nhusher/f865624832a6da82da06 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
(defn loan-payment [ principal monthly-interest months ] | |
(float | |
(max 0 | |
(if (zero? monthly-interest) | |
(/ principal months) | |
(* principal | |
(/ monthly-interest | |
(- 1 (Math/pow | |
(+ 1 monthly-interest) | |
(- months))))))))) | |
(loan-payment 18000 0.0164 60) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment