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
https://intuit.zoom.us/j/96732079313?pwd=MEZJd3B2YXlIUmNVeUtsaEhuUGtKZz09
Here’s my (in progress) CQRS project: https://github.com/nharsch/cqrs-demo
https://jpmonettas.github.io/flow-storm-debugger/user_guide.html
(defn length [collection]
(if (empty? collection)
0
(+ 1 (length (rest collection)))))
(length [])
(length (range 10)