Tagged Questions
The defn tag has no wiki summary.
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 ...
10
votes
1answer
960 views
Help me write a Clojure macro which automatically adds metadata to a function definition
I realize that the first rule of Macro Club is Don't Use Macros, so the following question is intended more as an exercise in learning Clojure than anything else (I realize this isn't necessarily the ...