clojure-dev

Issues: https://clojure.atlassian.net/browse/CLJ | Guide: https://insideclojure.org/2015/05/01/contributing-clojure/
john 2019-06-16T04:47:10.201800Z

For posterity, here's a macro to play with similar ideas:

john 2019-06-16T04:47:36.201900Z

john 2019-06-16T04:49:10.202600Z

Then you can do ((%% (println "hi" %1:bob)) {:bob 2} 3)) to get hi 2 out

john 2019-06-16T04:51:52.203100Z

you could drop that behind a tag reader too I suppose

john 2019-06-16T04:55:35.204300Z

needs nesting prevention too