Created
May 12, 2014 13:32
-
-
Save aamedina/bc941432facc4e783e39 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
| (macroexpand '(fn | |
| ([x] x) | |
| ([x & xs] (cons x xs)))) | |
| => | |
| (clojure.core/with-meta | |
| (cljc.core/reify | |
| clojure.lang.Fn | |
| clojure.lang.IFn | |
| (invoke [G__4128 G__4129] (let [[x] [G__4129]] x)) | |
| (invoke | |
| [G__4130 G__4131 G__4132] | |
| (let [[x] [G__4131] [& xs] G__4132] (cons x xs)))) | |
| {:tag nil}) | |
| ((fn | |
| ([x] x) | |
| ([x & xs] (cons x xs))) 1 [2 3]) | |
| => (1 2 3) | |
| ((fn | |
| ([x] x) | |
| ([x & xs] (cons x xs))) :hello) | |
| => :hello | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment