https://github.com/matt-snider/monkeylang
An interpreter for the Monkey Programming Language following along with How to Write an Interpreter in Go (https://interpreterbook.com)
https://github.com/matt-snider/monkeylang
golang interpreter monkey-language
Last synced: 3 months ago
JSON representation
An interpreter for the Monkey Programming Language following along with How to Write an Interpreter in Go (https://interpreterbook.com)
- Host: GitHub
- URL: https://github.com/matt-snider/monkeylang
- Owner: matt-snider
- Created: 2018-05-07T21:53:06.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-29T21:29:58.000Z (over 6 years ago)
- Last Synced: 2025-05-10T03:52:30.781Z (7 months ago)
- Topics: golang, interpreter, monkey-language
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Monkey Intepreter
This is an implementation of the intepreter for the Monkey Programming Language from [How to Write an Interpreter in Go](https://interpreterbook.com/).
# Tests
Run all tests:
```sh
$ go test ./...
```