I have a problem with `def` in macros. I'd like to create a bunch of
following definitions:
(def foo "FOO")
(def bar "BAR")
(def baz "BAZ")
So I wrote a macro:
user=> (defmacro def-stuff [v] `(def (symbol ~v) (clojure.string/upper-case
~v)))
#'user/def-stuff
And I'd like to do map this macro ov
Concering your quote "my interest in programming is not limited to data
science/ML...I am potentially interested in building apps": my repository
https://github.com/kloimhardt/bb-web has a set of examples, starting with a
10 line html file (directly containing Clojure code to be edited, no
com