Crates.io | monkey-compiler |
lib.rs | monkey-compiler |
version | 0.9.1 |
source | src |
created_at | 2021-10-18 02:07:01.495672 |
updated_at | 2023-07-18 01:41:40.370456 |
description | a compiler for monkeylang |
homepage | https://github.com/gengjiawen/monkey-rust |
repository | https://github.com/gengjiawen/monkey-rust |
max_upload_size | |
id | 466489 |
size | 102,265 |
This is a compiler 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.