I built an embeddable scripting language for Rust apps, with a web editor/runtime and a game engine demo Hi r/rust, I’ve been working on Volang / Vo: [https://volang.dev/](https://volang.dev/) It’s an embeddable scripting language for Rust applications. The compiler, bytecode VM, runtime, JIT path, WASM support, and tooling are written in Rust. The main idea is to give Rust apps a lightweight scripting layer that can be embedded directly, without depending on a separate external runtime. You can also edit and run Vo programs directly in the browser on the website. The web version uses the same Rust runtime stack compiled to WASM, so it is not just a syntax playground. As a real test of the language, I used it to build a small game engine, then made a demo with that engine. So the project is not only the language itself, but also the runtime/tooling needed to use it in an interactive Rust application.…