From f6bd2c6de529e7d3c2ddb65df320af91cdb76cbd Mon Sep 17 00:00:00 2001 From: Yogthos Date: Wed, 1 Jul 2026 16:52:02 -0400 Subject: [PATCH] readme: note the Homebrew install option --- README.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 40e0aa1..81319c7 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,23 @@ runs it on Chez. The compiler is self-hosted: it is written in Clojure ## Install Grab the self-contained `joltc` binary (Linux/macOS) — it bundles the runtime, -compiler, and standard library, so there is nothing else to install: +compiler, and standard library, so there is nothing else to install. + +With Homebrew: + +```bash +brew install jolt-lang/jolt/jolt +``` + +Or with the install script (installs to `/usr/local/bin` by default; `--dir ` +and `--version ` override that): ```bash curl -sL https://raw.githubusercontent.com/jolt-lang/jolt/main/install | bash ``` -It installs to `/usr/local/bin` by default; `--dir ` and `--version ` -override that. Then `joltc -e '(+ 1 2)'`. To run from source instead (needs Chez), -see [Build](#build). +Then `joltc -e '(+ 1 2)'`. To run from source instead (needs Chez), see +[Build](#build). ## Requirements