Crates.io | monkey-wasm |
lib.rs | monkey-wasm |
version | 0.9.1 |
source | src |
created_at | 2021-01-02 13:51:22.757443 |
updated_at | 2023-07-18 01:42:05.835591 |
description | monkey lang parser wasm version |
homepage | https://github.com/gengjiawen/monkey-rust |
repository | https://github.com/gengjiawen/monkey-rust |
max_upload_size | |
id | 330550 |
size | 5,932 |
This lib designed for compiling monkey-parser into WebAssembly and publishing the resulting package to NPM.
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.