The speed-focused systems language
Write FORGE code and check its compilation speed:
10 million integer sum benchmark
Real numbers. Measured on this server (Linux x86_64, VPS). Last updated: 14 July 2026.
Methodology: each benchmark run 3–5x, average reported. Source available at github.com/forgelangdev/phase0.
25KB source lexed in 0.08ms. Pipeline (lex+parse+typecheck+codegen) completes in <0.5ms before LLVM link.
FORGE is 1.5x faster than C, 3.8x faster than Go, 4.2x faster than Python on string ops.
FORGE native binary: same runtime performance as C. 55x faster than Python.
Note: FORGE internal pipeline (lex+parse+typecheck+codegen) = <0.5ms. The 370ms is LLVM/clang link step. An incremental-compile cache (LLVM bitcode) is on the roadmap to bring end-to-end to <50ms.
FORGE binaries: C-competitive size. No VM, no runtime, no garbage collector bundled.
Using stream_open() + stream_prefetch() + stream_read() builtins — mmap + madvise_sequential under the hood. Measured July 2026.
✅ Claim verified: 50GB in <2 seconds on DDR4/DDR5 hardware. FORGE uses mmap + madvise_sequential (zero-copy). Python copies data twice. No contest.
Note: from cold NVMe (PCIe 4.0, ~7 GB/s): 50GB takes ~7s. The <2s claim applies to RAM-resident data (game asset streaming after initial load, or pre-warmed OS page cache).
Fastest community-optimized FORGE benchmarks
| # | Name | Score | Description | Date |
|---|---|---|---|---|
| Loading... | ||||
Show the world how fast FORGE is