Mochi v0.10.5: A LINQ-style query language with a bytecode VM written in Go(github.com)
github.com
Mochi v0.10.5: A LINQ-style query language with a bytecode VM written in Go
https://github.com/mochilang/mochi/releases/tag/v0.10.5
https://github.com/mochilang/mochi/releases/tag/v0.10.5
What makes it different: queries compile to a register-based bytecode VM (written in Go) with compiler passes like constant folding, liveness analysis, and dead code elimination. It’s meant to feel like writing SQL inside a real language, backed by actual compiler infrastructure.
If you’re interested in how query engines, DSLs, or virtual machines work, this might be worth exploring.