fbd08e099fcc3259bc799b8b3ae7c0c079f3af79
These are my source files for working on Thorsten Ball's Writing an interpreter in go book. The ultimate goal of this source code is to interpret, and execute code written in a language called monkey. I'm still going through the book so this repo maybe incomplete.
An example of monkey is below. Monkey is a c-like language with closures, first class functions, and variable bindings.
let five = 5;
let ten = 10;
let add = fn(x, y) {
x + y;
};
return add(5,5);
Description
Languages
Go
100%