July 4th 2026 - Things I Worked On
Installed Clojure
I wanted to play around with a different flavor of Lisp as I write my own so I decided to install Clojure.
Installing on MacOS
Trust the tap:
brew trust clojure/tools
Install Clojure tools:
brew install clojure/tools/clojure
Hello world
(defn main
[& args]
(println "Hello, world!"))
(main)
Run from shell:
clojure -M script.clj