Currently built from source with Cargo. Pre-built binaries and a one-line install script are coming soon.
Linux
detectedInstalls to ~/.local/bin. The script will tell you if that directory needs adding to your PATH.
curl -fsSL https://raw.githubusercontent.com/Walon-Foundation/code-lang/main/install.sh | shBuild from source
Requires Rust (stable, 1.80+). The repo is a Cargo workspace — all three binaries build together.
Binaries land in target/release/. Add that directory to your PATH or copy the binaries to /usr/local/bin/.
Usage
Run the REPL
Run a script
Scripts use the .cl extension.
Tooling — coming soon
The workspace builds three binaries. The formatter and language server are currently skeleton stubs — they will be wired up in upcoming releases.
code-langThe interpreter. Run scripts or start the REPL.
code-lang-fmtFormatter with check and lint subcommands. code-lang-fmt check file.cl exits 1 on parse errors.
code-lang-lspLanguage server — parse diagnostics, completions, and hover in your editor.
curl -sSf https://… | sh) will install all three binaries into ~/.code-lang/bin/ so the VS Code extension can find them automatically — no PATH changes needed.Next steps