Created
January 12, 2016 14:41
-
-
Save keyvanakbary/190eb819632db0d6c303 to your computer and use it in GitHub Desktop.
Let is just a syntax sugar over lambdas
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
; Let lambda syntactic sugar | |
(let [var1 exp1 | |
var2 exp2] | |
(do-something var1 var2)) | |
((fn [var1 var2] | |
(do-something var1 var2)) | |
(exp1 exp2)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment