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

https://github.com/ojiry/monkey

For studying "Writing An Interpreter In Go"
https://github.com/ojiry/monkey

golang monkey

Last synced: about 21 hours ago
JSON representation

For studying "Writing An Interpreter In Go"

Awesome Lists containing this project

README

          

# Monkey

[TODO]

## Installation

```sh
$ go get github.com/ojiry/monkey
```

## Run

```sh
$ monkey
Hello ojiry! This is the Monkey programming language!
Feel free to type in commands
>> let add = fn(x, y) { x + y };
>> add(2, 8)
10
```