INSTALL SDK, CONFIGURE IDE, AND BUILD NATIVE APPS

Getting Started with TezzNative

Everything you need to set up TezzNative v2.2.1 on Windows or Linux in under 60 seconds.

1

Installation (Windows & Linux)

Choose your preferred installation method. Both options automatically configure the native compiler (tezzc), command runner (tezz), and standard library packages (40+).

Windows (PowerShell 1-Liner)

Fastest automated user install. No admin required.

irm https://tn.tezzcorp.com/download/install.ps1 | iex

Windows Command Prompt (cmd.exe)

Fast automated cmd setup for terminal shells.

curl -fsSL https://tn.tezzcorp.com/install.cmd -o install.cmd && install.cmd

Linux & macOS (Bash Installer)

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

Verify Installation

Open a new terminal and verify the compiler and CLI driver:

# Check version
tezz --version
# Output: TezzNative v2.2.1 (x86_64 Windows) | TezzCorp Pvt Ltd. | Created by Rohit Pathak

# Run diagnostic health check
tezz doctor
3

Write Your First Program

Create a file named app.tn:

import "io"
import "tts"

fn main() -> int:
  say "Hello from TezzNative v2.2.1!"
  say "Engineered by TezzCorp Pvt Ltd. | Created by Rohit Pathak"

  // Native speech synthesis
  let eng = tts.tts_new()
  tts.tts_speak(eng, "Hello world from TezzNative native AI language!")
  tts.tts_free(eng)
  ret 0

Run it immediately using JIT / bytecode or compile directly to a zero-overhead standalone binary:

# Run directly
tezz run app.tn

# Compile to standalone native Windows executable
tezzc buildexe app.tn app.exe
.\app.exe