Simple interpreter
Go to file
tijani 3b013cd917 Formatting changes.
REPL can now use the parser.

NOTE: REPL currently outputs the parsed tokens because tracing is still turned on.

git-svn-id: https://svn.tlawal.org/svn/monkey@41 f6afcba9-9ef1-4bdd-9b72-7484f5705bac
2022-08-01 16:13:40 +00:00
ast CallExpression ast, parser and tests completed. 2022-08-01 04:58:28 +00:00
lexer Formatting 2022-05-26 16:33:09 +00:00
parser Formatting changes. 2022-08-01 16:13:40 +00:00
repl Formatting changes. 2022-08-01 16:13:40 +00:00
token git-svn-id: https://svn.tlawal.org/svn/monkey@18 f6afcba9-9ef1-4bdd-9b72-7484f5705bac 2022-05-26 19:20:51 +00:00
debug.rdbg ast and parser 2022-05-22 06:51:19 +00:00
go.mod Monkey can now lex its basic types and keywords. 2022-05-12 20:51:16 +00:00
main.go ExpressionStatement in the AST to represent the typse of expressions that is supported in monkey. 2022-05-30 05:51:27 +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/
```