Skip to content

T81Lang

t81dev edited this page Nov 24, 2025 · 1 revision

T81Lang

Goals: Base‑81 primitives, determinism, capability‑gated FFI.

Primitives

  • T81BigInt — arbitrary precision integers
  • T81Float — floating‑point ternary numbers
  • T81Fraction — exact rationals

Compilation Pipeline

Lexer → Parser → Semantic Analyzer → Codegen (TISC) → VM/JIT

Example

fn fibonacci(n: T81BigInt) -> T81BigInt {
  if n <= 1t81 { return n; }
  fibonacci(n - 1t81) + fibonacci(n - 2t81)
}

Clone this wiki locally