Fork me on GitHub
#clojure-losangeles
<
2022-09-15
>
nate01:09:59

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

nigel01:09:18

btw, Ramsey Nasser (Arcadia creator) also built this standalone Clojure CLR implementation: https://github.com/nasser/magic

nigel01:09:45

Here’s my (in progress) CQRS project: https://github.com/nharsch/cqrs-demo

nigel02:09:00

(defn length [collection]
  (if (empty? collection)
    0
    (+ 1 (length (rest collection)))))
(length [])
(length (range 10)