Rust implementation of the Monkey language, based on the book Writing An Interpreter In Go.
The web playground is deployed on https://taga3s.github.io/monkey-rs/.
- Run the REPL with following command.
just repl- Type in Monkey code and press Enter to execute.
>> let add = fn(a, b) { a + b; };
>> add(10, 15);
25just run <file_path>