Powered by LLVM

Code at the Speed of Light

QuickScript is a blazingly fast, async-first programming language with JIT & AOT compilation. Write expressive code that runs at native speed.

100x
Faster than Python
0ms
Cold Start
Async
Native Support
server.qx
let web = io.web();

io.listen(8080, fun(req: Request) {
    return web.file("./public" + req.path);
})

Why QuickScript?

Designed from the ground up for modern computing. Fast, safe, and expressive.

Blazingly Fast

Compiles to native machine code via LLVM, achieving performance on par with C and Rust.

Async First

Built-in async/await with a lightweight runtime. Handle millions of concurrent connections effortlessly.

JIT & AOT

Choose your compilation strategy. JIT for rapid development, AOT for production deployments.

Simple Syntax

Clean, expressive syntax inspired by modern languages. Less boilerplate, more productivity.

Type Safe

Strong static typing with type inference. Catch errors at compile time, not runtime.

Zero Overhead

No garbage collector pauses. Deterministic memory management for predictable performance.

See It In Action

Clean, expressive syntax that feels natural and powerful.

hello.qx
print("Hello, World!")