This product was not featured by Product Hunt yet. It will not be visible on their landing page and won't be ranked (cannot win product of the day regardless of upvotes).
So I had a slightly unreasonable idea two years ago:
What if I built a programming language without depending on C, LLVM, or any existing toolchain?
The result is Jda — a high-performance systems language bootstrapped from raw x86-64 assembly. The compiler now compiles itself. No GC. No runtime. Single static binaries.
And on real benchmarks, it’s doing things I genuinely didn’t expect.
The numbers that made me double-check
I ran a 6-language benchmark suite (C, Rust, Go, Jda, Python, Ruby) on real algorithms — not microbenchmarks.
• Sudoku (500 puzzles): C 62ms, Rust 62ms, Go 66ms, Jda 41ms
• LZ77 (1 MB compress): C 1,830ms, Rust 2,185ms, Go 2,721ms, Jda 277ms
That’s 1.5× faster than C on Sudoku and 6.6× faster than C on LZ77. Running via Rosetta 2, no less — C/Rust/Go were native ARM64, Jda was x86-64 emulated.
How? Source-level optimizations the C compiler can’t easily do: MOD→AND strength reduction, hash-chain hoisting, aggressive DCE.
Compile times are kinda absurd too
33× faster compilation than Rust, 16× faster than Go. Skipping LLVM saves a lot of time.
A taste of the syntax
`fn search_file(path: &i8, pattern: &i8) -> i64 {
let fd = file_open(path, 0)
let buf = file_read_all(fd)
let matches = 0
for i in range(str_len(buf)) {
if substr_match(buf, i, pattern) {
matches += 1
}
}
ret matches
}`
A real ripgrep-style search tool, ~400 lines total, compiles to a 1 MB static binary with zero dependencies.
What’s in the box
• Self-hosted compiler — byte-identical fixed point reached April 2026
• 117 stdlib packages — HTTP, JSON, crypto, tensors, neural networks
• Built-in concurrency — goroutine-style green threads, no GC
• 388 conformance tests passing
• Native installers for Windows, macOS, Linux
Try it
Repo: https://www.github.com/jdalang/j...
Happy to answer questions about the bootstrap process, the codegen, or why on earth I did this in the comments.
This is SO COOL! I'll definitely have to try it out myself. The syntax looks very intuitive. As impressive as this is, though, I do have to ask... what gave you the idea to make this? Was it just curiosity, trying to push your skills to the limit?
About Jda Programming Language on Product Hunt
“opensource compiler ai faster”
Jda Programming Language was submitted on Product Hunt and earned 8 upvotes and 2 comments, placing #22 on the daily leaderboard. A self-hosted systems programming language built from scratch — zero C, zero Rust. Bootstrapped from assembly.
Jda Programming Language was featured in Open Source (68.5k followers), Languages (14.4k followers), Developer Tools (514k followers) and GitHub (41.3k followers) on Product Hunt. Together, these topics include over 112.3k products, making this a competitive space to launch in.
Who hunted Jda Programming Language?
Jda Programming Language was hunted by JAI LALAWAT. A “hunter” on Product Hunt is the community member who submits a product to the platform — uploading the images, the link, and tagging the makers behind it. Hunters typically write the first comment explaining why a product is worth attention, and their followers are notified the moment they post. Around 79% of featured launches on Product Hunt are self-hunted by their makers, but a well-known hunter still acts as a signal of quality to the rest of the community. See the full all-time top hunters leaderboard to discover who is shaping the Product Hunt ecosystem.
Want to see how Jda Programming Language stacked up against nearby launches in real time? Check out the live launch dashboard for upvote speed charts, proximity comparisons, and more analytics.