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();
    };
  }
}

Language Highlights

JIT

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

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.

FN

OOP + Functional

Generics, closures, lambdas, first-class functions, and reflection. One language, both paradigms.

NLP

Text Processing

Tokenization, TF-IDF, text similarity, and sentiment analysis out of the box.

NET

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.

DEV

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

Linux x64 Linux ARM64 macOS ARM64 Windows x64 Windows ARM64 Raspberry Pi

Deep Dives

AI-generated podcast overviews — great for commutes.

AI-Native Language

Internals & AI