An open API service indexing awesome lists of open source software.

https://github.com/maxmindlin/rsmonkey

Rust implementation of the Monkey programming language
https://github.com/maxmindlin/rsmonkey

monkey programming-language rust

Last synced: 6 months ago
JSON representation

Rust implementation of the Monkey programming language

Awesome Lists containing this project

README

          

RSMonkey is a rust implementation of the monkey language, as outlined in the [interpreter book, by Thornsten Ball](https://interpreterbook.com/).

Example Monkey snippet:

```
let fnTable = {
"addOne": fn (x) { x + 1 }
};

let y = fnTable["addOne"](5);
puts(y) // => 6
```