Install from the published artifacts on GitHub Releases, or build the CLI from source when you want the latest tree. Gengoscript requires Zig 0.16.0 for source builds.
Use the native CLI for local development and REPL work. Build the WASI target when you want the WebAssembly runtime described in the docs, or when you want to run the CLI through wasmtime.
# Build CLI from source
zig build -Dpreset=1m cli
# Build WASI runtime
zig build -Dpreset=1m wasi
# Execute
./zig-out/bin/gengo script.gengo
# Run the WASI build with wasmtime
wasmtime --dir . ./build/gengo-cli.wasm -- script.gengo
Installation is documented through published artifacts and explicit build steps, not remote shell bootstrap scripts.
Start with the Playground for a quick feel, the docs for the language and embedding model, or GitHub for the source tree and releases.