symbol is not a symbol in (def (symbol "x") ...) ???

2020-10-02 Thread Rostislav Svoboda
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

Re: Clojure as first language

2020-10-02 Thread markus...@gmail.com
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