Tagged Questions
11
votes
4answers
1k views
How to defn a function from string in Clojure?
I'd like to do this (in REPL or anywhere)
(defn (symbol "print-string") [k] (println k))
and then be able to do
(print-string "lol")
Or, if there is any other way to create defn from custom ...