Phases 0-7 Complete — Built with FORGE

The language that
parallelises everything

Zero GC. Auto-parallel. Native binaries.
Add @parallel to any loop. The compiler handles the rest.

Try FORGE Online See Benchmarks

Real Numbers. Real Hardware.

7,797x
faster than Python
4.57x
@parallel speedup (8 cores)
1.1x
vs Rust (matches within 10%)
0.16ms
10M integer sum
Live leaderboard at bench.forgelang.dev →

Write it once.
The compiler parallelises everything.

parallel_sum.forge — compiled by FORGE

module parallel_sum {
    @parallel
    fn sum(data: []i64) -> i64 {
        var total: i64 = 0
        for i in 0..data.len {
            total = total + data[i]
        }
        return total
    }

    fn main() -> void {
        let data = range(0, 10_000_000)
        let result = sum(data)
        print(result)  // 0.16ms on 8 cores
    }
}

The FORGE Ecosystem

11 live sites. All built and powered by FORGE infrastructure.

Web IDE ide.forgelang.dev 📦 Package Hub hub.forgelang.dev 📊 Benchmarks bench.forgelang.dev 🎮 Games games.forgelang.dev 📖 Docs docs.forgelang.dev 🎨 Studio studio.forgelang.dev Cloud cloud.forgelang.dev 🔗 Share share.forgelang.dev 🖼 Gallery gallery.forgelang.dev 🎯 Demo demo.forgelang.dev 🧩 VS Code Marketplace

13 Commands. One Tool.

forge build main.forge

Compile to native binary. --target arm64 / wasm32 / wasm-web

forge run main.forge

Compile and run in one step

forge bench --compare

Show 7,797x vs Python in your terminal

forge game new <name>

Scaffold a game with ECS, physics, audio stdlib

forge llm info

Built-in LLM inference engine — tokenizer, attention, GGUF

forge repl

Interactive FORGE shell

forge share main.forge

Upload to share.forgelang.dev instantly

forge profile main.forge

Per-stage compile timing breakdown

forge pkg add / publish

ForgeHub package management — 9 packages live

Acquisition Ready

Built to be acquired.

Production-grade language runtime with 11 live ecosystem sites, a published VS Code extension, and benchmarks that rival Rust. Strategic conversations open.

$2M/yr
Licence
$10M
Source Code
$200M–$2B
Full Acquisition
Contact for Acquisition → dev@forgelang.dev