Skip to content

Instantly share code, notes, and snippets.

@wdhowe
Last active December 12, 2025 01:32
Show Gist options
  • Select an option

  • Save wdhowe/e6fc5e372b85ad8a25fdebf446b1a3e6 to your computer and use it in GitHub Desktop.

Select an option

Save wdhowe/e6fc5e372b85ad8a25fdebf446b1a3e6 to your computer and use it in GitHub Desktop.
Install the Clojure Programming Language

Install Clojure

Official site: https://www.clojure.org/index

Mac

brew install openjdk clojure rlwrap

Linux

Linux instructions: https://www.clojure.org/guides/install_clojure#_linux_instructions

Verify

  • Run the Clojure REPL and print hello (ctrl+d to quit).

    clj
    
    user=> (println "Hello!")

Project Creation

To create a project, setup one of these:

  • Clojure Deps/Tools - Newer/more minimal, officially supported by the Clojure team.
  • Lein - Traditional/batteries included project automation from the community.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment