| Crates.io | monkey-parser |
| lib.rs | monkey-parser |
| version | 0.10.1 |
| created_at | 2020-12-09 13:39:43.339136+00 |
| updated_at | 2025-10-24 10:50:10.236478+00 |
| description | a parser for monkey lang |
| homepage | https://github.com/gengjiawen/monkey-rust |
| repository | https://github.com/gengjiawen/monkey-rust |
| max_upload_size | |
| id | 321156 |
| size | 56,107 |
This is a parser for the Monkey programming language written in Rust

Monkey has a C-like syntax, supports variable bindings, prefix and infix operators, has first-class and higher-order functions, can handle closures with ease and has integers, booleans, arrays and hashes built-in.
Official site is: https://monkeylang.org/. It's has various implementation languages :).
There is a book about learning how to make an interpreter: Writing An Interpreter In Go. This is where the Monkey programming language come from.