TezzNative v1.1.0 is hardening toward production. View roadmap

Getting started

Install, verify, run.

The SDK ships the compiler, wrapper command, standard library, tools, and update scripts.

Windows install
iwr https://tn.tezzcorp.com/download/install.ps1 -OutFile install.ps1
powershell -ExecutionPolicy Bypass -File .\install.ps1
Linux install
curl -fsSL https://tn.tezzcorp.com/download/install.sh | bash
First program
fn main() -> int:
  say "Hello from TezzNative"
  ret 0

tezz run hello.tn
tezz buildexe hello.tn hello.exe

Update flow

Use `tezz update --check` or call the update API directly for automation.

Update API
curl "https://tn.tezzcorp.com/api/update_check.php?platform=windows-x64&version=1.0.0"