An Interpreter for the monkey language
Go to file
2024-05-26 11:13:01 +05:30
src improved repl with a quit instruction 2024-05-26 11:13:01 +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 improved repl with a quit instruction 2024-05-26 11:13:01 +05:30
Cargo.toml improved repl with a quit instruction 2024-05-26 11:13:01 +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.