clojure-losangeles

nate 2022-09-15T01:18:59.994309Z

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

dorab 2022-09-15T01:19:07.038059Z

tnx

nigel 2022-09-15T01:20:18.590809Z

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

nigel 2022-09-15T01:49:45.233679Z

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

nate 2022-09-15T01:56:35.271739Z

https://markm208.github.io/cljbook/

nigel 2022-09-15T02:45:00.568729Z

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