Install CL++
Download the installer, run it, and CL++ is on your machine: the clpp compiler, editor highlighting, IntelliSense, and a language server.
- Save
clpp-setup.exe. - Double-click it. The installer copies the compiler to
%LOCALAPPDATA%\Programs\CLPP, adds it to your PATH, and installs the language pack in Cursor and VS Code. - Open a new terminal and run
clpp --help. - Reload the editor window.
That is the full path: the site gives you the installer; the installer installs the language.
From the command line
Section titled “From the command line”If you already have clpp:
clpp setupThat replaces an older compiler on this machine (for example 0.1.0) with the one you just ran, then copies the matching editor pack.
Editor pack only (compiler already installed):
clpp installclpp install --editor cursorclpp install --editor codeFrom source
Section titled “From source”cargo install --path .clpp setupCompile a file
Section titled “Compile a file”clpp compile examples/hello/hello.server.clppclpp build examples -o outclpp fmt examples/hello/hello.server.clppclpp watch examples -o outNext: Your first script.