Categorygithub.com/freddiehaddad/monkey.interpreter
repository
0.0.0-20230407123847-b451ad6eacb8
Repository: https://github.com/freddiehaddad/monkey.interpreter.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

Monkey Interpreter

This project is based on the book Writing An Interpreter In Go.

The most notable differences between the original book's implementation and this one are the following:

- Concurrency
- More emphasis on test-driven development
- Extending the language capabilities

Building the Project

The project can be built locally via:

go build -v ./...

Running the Unit Tests

The project unit tests can be executed via:

go test -v ./...