Skip to content

Latest commit

 

History

History
10 lines (10 loc) · 610 Bytes

File metadata and controls

10 lines (10 loc) · 610 Bytes

Monkey - A toy, interpreted programming language, implemented in Go

This is the implementation for the Monkey language interpreter, implemented in Go. It follows the book, "Writing an Interpreter in Go", by Thorsten Ball.

To run the interpreter

  1. Make sure that you already have your GOPATH setup
  2. Go to %GOPATH%\src
  3. Clone the repo inside the above folder
  4. cd into the folder
  5. Finally run the below command

go run main.go

In future, Monkey would be compiled language and it would follow this same code as the baseline. It will follow the book, "Writing an Compiler in Go", by Thorsten Ball.