https://github.com/kitasuke/monkey-go
"Writing An Interpreter in Go" and "Wring A Compiler in Go"
https://github.com/kitasuke/monkey-go
Last synced: about 1 year ago
JSON representation
"Writing An Interpreter in Go" and "Wring A Compiler in Go"
- Host: GitHub
- URL: https://github.com/kitasuke/monkey-go
- Owner: kitasuke
- License: mit
- Created: 2018-10-06T04:03:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-16T14:51:54.000Z (over 7 years ago)
- Last Synced: 2025-03-31T08:44:09.217Z (about 1 year ago)
- Language: Go
- Homepage:
- Size: 115 KB
- Stars: 226
- Watchers: 7
- Forks: 63
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# monkey-go
[](https://circleci.com/gh/kitasuke/monkey-go/tree/master)
Monkey programming language from [Writing an interpreter in Go](https://interpreterbook.com) and [Writing a compiler in Go](https://compilerbook.com) books.
## REPL
1. Run `go build -o monkey-go && ./monkey-go` in your terminal
## Other languages
- [monkey-swift](https://github.com/kitasuke/monkey-swift)