An Interpreter for the monkey language
Go to file
2024-05-19 14:12:50 +05:30
src bugfix: in function environments which was causing incorrect environment state in some situations 2024-05-19 14:12:50 +05:30
.gitignore Fixed Parser, Can parse Let statements now 2019-12-25 17:55:15 +05:30
.gitlab-ci.yml updated deps, added CI config 2020-06-01 17:22:34 +05:30
Cargo.lock Added eval support for let statements 2024-05-17 16:50:02 +05:30
Cargo.toml Added eval support for let statements 2024-05-17 16:50:02 +05:30
LICENSE Add LICENSE 2020-01-21 15:33:22 +00:00
readme.md Added closure test, accept ints in variable names 2024-05-18 08:46:42 +05:30

Monkey Interpreter

This project is my attempt at writing an interpreter while working through the book, Writing an Interpreter in Go. It supports all the features from the book.