A personal Rust implementation of the interpreter presented by Robert Nystrom in his book Crafting Interpreters.
$ curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh
$ rustup install nightly
$ git clone https://github.com/pdrolopes/crafting_interpreters.git
$ cd crafting_interpreters
$ cargo +nightly build
$ ./target/debug/crafting_interpreters
> print "Hello World";
Hello World
The interpreter reads the Lox language, created by Nystrom.
You can find more details about it on this link.