Created
November 20, 2020 00:42
-
-
Save frenchy64/c894247516ce26bf21c49eace86a46e3 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
typed.clj.refactor=> (refactor-form-string "+" {}) | |
"clojure.core/+" | |
typed.clj.refactor=> (refactor-form-string "(defn foo [a] (+ a 3))" {}) | |
"(clojure.core/defn foo [a__#0] (clojure.core/+ a__#0 3))" | |
typed.clj.refactor=> (refactor-form-string "(defmacro foo [a] `(+ ~a 3))" {}) | |
"(clojure.core/defmacro foo [a__#0] `(+ ~a__#0 3))" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment