An Interpreter for the monkey language
Go to file
2024-06-01 16:35:30 +05:30
src completed index op on hashtable, added puts builtin 2024-06-01 16:35:30 +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 completed index op on hashtable, added puts builtin 2024-06-01 16:35:30 +05:30

Monkey Interpreter

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

This language supports integers, strings, hashtables, functions, closures, arrays, if/else and more!