Clojure form to string
clojure
Solution
=> (defmacro string-it [x] (str x))
#'user/string-it
=> (string-it (+ 1 2))
"(+ 1 2)"
Problem
Is there a way to convert a Clojure form to a string? E.g. convert: ``` (and (f 1) (g 3)) ``` to: ``` "(and (f 1) (g 3))" ```