TezzNative Documentation

v1.0.0 · Full onboarding and SDK reference

Documentation Hub

Everything needed to install, validate, and ship TezzNative v1.0.0 projects.

Start in 3 Commands

tezz doctor
tezz run hello.tn
tezz build app.tn --platform linux

Install

Linux/macOS:
curl -fsSL https://tn.tezzcorp.com/download/install.sh | bash

Windows PowerShell:
iwr https://tn.tezzcorp.com/download/install.ps1 -OutFile install.ps1
powershell -ExecutionPolicy Bypass -File .\install.ps1

CLI Commands

tezz run file.tn [--platform linux|windows|tezzos|macos|android|native]
tezz build file.tn --platform linux|windows|tezzos|macos|android
tezz doctor
tezz test --smoke
tezz test
tezz bench
tezz lock / tezz verify / tezz release

Platform Mapping

linux   -> target linux
windows -> target x86_64
macos   -> target macos
android -> target linux-arm64
tezzos  -> freestanding asm output (build/<name>_tezzos.s)

Project Layout

hello.tn        # your source
tezz.mod        # project metadata
lib/*.tn        # shared libraries
build/          # generated outputs

SDK Coverage

Modules: 22
Functions indexed: 755
Open full function list: /docs/sdk

v1.0.0 Feature Audit

[READY] CLI run/build workflow
  - Single-command entry points for run/build.
[READY] Environment diagnostics
  - Checks PATH, compiler, SDK core, and project files.
[READY] Smoke testing path
  - Fast CI/dev sanity tests.
[READY] Cross-platform build targets
  - Linux, Windows, macOS, Android, and TezzOS outputs.
[READY] Module lock and verification
  - Dependency lock and integrity verification commands.
[READY] Core std/io/net/math libraries
  - Essential SDK modules packaged in v1.0.0.