Builtins Overview
Built-in APIs and feature flags in Tish.
Secure by default
Tish runs in secure mode with no I/O features enabled by default. Only core builtins (console, Math, JSON, parsing, etc.) are available.
Feature flags
To enable network, filesystem, or process APIs:
- Run: The tish binary must be built with features, e.g.
cargo run -p tishlang --features http -- run main.tish. Thetish runcommand does not accept feature flags. - Build: Pass
--feature(singular, repeatable) when building:tish build main.tish -o app --feature http --feature fs --feature process
In zectre.yaml, configure features under build.features for platform deploys.