Write once. Build UIs. Fetch data. Run natively.
Simple declarations and control flow.
let x = 10
if x > 5 {
print("Hello")
}
Auto-download dependencies before execution.
auto download "https://example.com/tool.exe"
run "tool.exe"
Run Python, C++, or JS seamlessly.
python {
print("Hello from Python")
}
Built-in HTTP and async support.
async func fetch() {
let data = await http.get("https://api.site.com")
log(data)
}
Create Windows forms on the fly.
newtab(name: "App", width: 800, height: 600)
window "My App" {
button "Click me" {
print("Clicked")
}
}
Install modules easily via CLI.
kwen install mathlib
kwen remove mathlib
kwen build app.kwen