From Vibe to Silicon.
Write AI, ML, and network apps in fewer lines. No external packages. No build system hallucinations. Native ARM64 and x86-64 performance.
use API.OpenAI, API.OpenAI.Chat, Collection;
class CodeReviewer {
function : Main(args : String[]) ~ Nil {
token := System.IO.Filesystem.FileReader->ReadFile("api_key.txt")->Trim();
prompt := Pair->New("user", args[0])<String, String>;
completion := Completion->Complete("gpt-4o", prompt, token);
if(completion <> Nil) {
completion->GetFirstChoice()
->GetMessage()<String, String>
->GetSecond()->PrintLine();
};
}
}
Write, compile, and run code in your browser. 33 demos across 7 categories. Quick Start
Introduction to the language with concepts and sample code. AI Developer Guide
OpenAI, Gemini, Ollama, ONNX, and OpenCV with working code examples. API Reference
Full documentation for all supported libraries. 350+ Solutions
Rosetta Code examples compared with other languages. Changelog
Release notes and what's new across every version.
Language Highlights
JIT Compiled
Automatic hot-code detection with ARM64 and x86-64 native compilation. Direct JIT-to-JIT calling and generational GC with bump allocation.
AI-Native
First-party OpenAI, Gemini, Ollama, ONNX, and OpenCV — built in, not bolted on. AI writes pure logic against a stable API. Zero dependency hallucinations.
OOP + Functional
Generics, closures, lambdas, first-class functions, and reflection. One language, both paradigms.
Text Processing
Tokenization, TF-IDF, text similarity, and sentiment analysis out of the box.
Web & Networking
A self-contained networking engine: TCP/UDP, DTLS, HTTP/1.1 + WebSockets, HTTP/2, and HTTP/3/QUIC — all standard library, no packages required.
Industrial Tooling
LSP for 7 editors (VS Code, Sublime, Neovim, Emacs, Kate, ecode, Helix), DAP debugger with live instance field expansion, REPL, and automated API docs.
Cross-Platform
Deep Dives
AI-generated podcast overviews — great for commutes.
AI-Native Language
Internals & AI