-
Notifications
You must be signed in to change notification settings - Fork 0
T81Lang
t81dev edited this page Nov 24, 2025
·
1 revision
Goals: Base‑81 primitives, determinism, capability‑gated FFI.
-
T81BigInt— arbitrary precision integers -
T81Float— floating‑point ternary numbers -
T81Fraction— exact rationals
Lexer → Parser → Semantic Analyzer → Codegen (TISC) → VM/JIT
fn fibonacci(n: T81BigInt) -> T81BigInt {
if n <= 1t81 { return n; }
fibonacci(n - 1t81) + fibonacci(n - 2t81)
}
Last updated: 2025-11-24 • Licensed CC BY 4.0 • Spec Root: https://github.com/t81dev/t81-foundation/tree/main/spec