Created
May 30, 2018 12:00
-
-
Save green-coder/f86f73e96e23cd6447109f5522e548a9 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
(def identity | |
(fn [rf] | |
(fn ([] (rf)) | |
([result] (rf result)) | |
([result input] (rf result input))))) | |
(into [] identity (list 1 2 3)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment