clojure-losangeles 2022-09-15

waiting for new zoom link, will post when I get it

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)