I would like to convert a string to a form in clojure. Something like
(defn string-to-form [string]
;; some magic here
converted-to-form)
This question has the opposite direction, namely form to string. How to I go the other way?
I would like to convert a string to a form in clojure. Something like
(defn string-to-form [string]
;; some magic here
converted-to-form)
This question has the opposite direction, namely form to string. How to I go the other way?