Created
November 2, 2014 16:01
-
-
Save eneroth/a45c1b8ac24f1af17365 to your computer and use it in GitHub Desktop.
This file contains 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 add [a b] | |
(+ a b)) | |
(let [add-1 (partial add 1)] | |
(println (add-1 6)) | |
(println (add-1 12))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment