Simple interpreter
Go to file
2022-11-24 20:02:19 +00:00
ast Adding Support for arrays. TESTs do not pass, need to fix. 2022-11-24 20:02:19 +00:00
evaluator Built-in functions: 2022-11-11 20:30:15 +00:00
lexer Adding Support for arrays. TESTs do not pass, need to fix. 2022-11-24 20:02:19 +00:00
object Built-in functions: 2022-11-11 20:30:15 +00:00
parser Adding Support for arrays. TESTs do not pass, need to fix. 2022-11-24 20:02:19 +00:00
repl Implemented environments which is just a hash map to keep track of values in the language. 2022-08-19 07:18:37 +00:00
token Adding Support for arrays. TESTs do not pass, need to fix. 2022-11-24 20:02:19 +00:00
go.mod Monkey can now lex its basic types and keywords. 2022-05-12 20:51:16 +00:00
main.go Implemented environments which is just a hash map to keep track of values in the language. 2022-08-19 07:18:37 +00:00
readme.txt add readme 2022-06-01 14:27:07 +00:00

The Monk Programming Language.

To test a specific function, run

```
go test -v -run 'TestFnctionName' ./test_dir/
```