The Modern Hybrid Language

Write once. Build UIs. Fetch data. Run natively.

Core Commands & Syntax


Variables & Logic

Simple declarations and control flow.

let x = 10
if x > 5 {
    print("Hello")
}

System & Auto-download

Auto-download dependencies before execution.

auto download "https://example.com/tool.exe"
run "tool.exe"

Cross-Language Execution

Run Python, C++, or JS seamlessly.

python {
    print("Hello from Python")
}

Network & Async

Built-in HTTP and async support.

async func fetch() {
    let data = await http.get("https://api.site.com")
    log(data)
}

Native GUI (newtab/window)

Create Windows forms on the fly.

newtab(name: "App", width: 800, height: 600)
window "My App" {
    button "Click me" {
        print("Clicked")
    }
}

Package Management

Install modules easily via CLI.

kwen install mathlib
kwen remove mathlib
kwen build app.kwen