Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kyosu-1/monkey
writing an interpreter in go
https://github.com/kyosu-1/monkey
go interpreter
Last synced: 26 days ago
JSON representation
writing an interpreter in go
- Host: GitHub
- URL: https://github.com/kyosu-1/monkey
- Owner: kyosu-1
- Created: 2023-01-29T13:29:11.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-20T14:59:11.000Z (almost 2 years ago)
- Last Synced: 2024-06-20T20:32:21.686Z (7 months ago)
- Topics: go, interpreter
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# monkey
interpreter in go# impl
* 字句解析木
* 構文解析木
* 抽象構文木(AST)
* 評価器# ref
[Go言語で作るインタプリタ](https://www.oreilly.co.jp/books/9784873118222/)