I did this project following the 'Writing a Interpreter with Go' book.
First, clone the project
git clone git@github.com:GabrielModog/monkey-interpreter.git
cd monkey-interpreter/
Make sure that you have Golang installed.
go run main.go
Will start the Repl. Try this:
let adder = fn(x, y){
return x + y;
};
I want to add some ideas I had when I was reading the book. Make this interpreter usable as possible.
Made with 🩵 by @GabrielModog