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
(defmacro -> (form &rest forms) | |
(reduce | |
(lambda (acc next) | |
(if (listp next) | |
(list* (car next) acc (cdr next)) | |
(list next acc))) | |
forms | |
:initial-value form)) | |
OlderNewer