An open API service indexing awesome lists of open source software.

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"

Awesome Lists containing this project

README

          

# monkey-go

[![CircleCI](https://circleci.com/gh/kitasuke/monkey-go/tree/master.svg?style=svg)](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)