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

https://github.com/douglascdev/wait

My implementation for the Monkey programming language following "Writing An Interpreter In Go"
https://github.com/douglascdev/wait

Last synced: 8 days ago
JSON representation

My implementation for the Monkey programming language following "Writing An Interpreter In Go"

Awesome Lists containing this project

README

          

# wait

My implementation for the Monkey programming language following "Writing An Interpreter In Go"

## Example
```monkey
let five = 5;
let ten = 10;

let add = fn(x, y) {
x + y;
};

let result = add(five, ten);
```