https://github.com/mhogeveen/monkey-interpreter
Monkey Interpreter written in Go
https://github.com/mhogeveen/monkey-interpreter
go golang interpreter lexer parser
Last synced: about 1 year ago
JSON representation
Monkey Interpreter written in Go
- Host: GitHub
- URL: https://github.com/mhogeveen/monkey-interpreter
- Owner: mhogeveen
- Created: 2024-01-31T19:42:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-10T19:31:35.000Z (over 2 years ago)
- Last Synced: 2025-04-23T21:18:16.430Z (about 1 year ago)
- Topics: go, golang, interpreter, lexer, parser
- Language: Go
- Homepage:
- Size: 89.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🐒 Monkey Interpreter
Repo tracking my progress working through the amazing book [Writing an Interpreter in Go](https://interpreterbook.com/) by Thorsten Ball.
## Instructions
### Start REPL
```bash
go run .
```
### Run tests
```bash
go test -v ./...
```