waiting for new zoom link, will post when I get it
tnx
btw, Ramsey Nasser (Arcadia creator) also built this standalone Clojure CLR implementation: https://github.com/nasser/magic
Here’s my (in progress) CQRS project: https://github.com/nharsch/cqrs-demo
(defn length [collection]
(if (empty? collection)
0
(+ 1 (length (rest collection)))))
(length [])
(length (range 10)