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"
- Host: GitHub
- URL: https://github.com/ojiry/monkey
- Owner: ojiry
- Created: 2018-06-21T11:24:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-26T12:53:41.000Z (almost 8 years ago)
- Last Synced: 2025-02-26T22:16:28.856Z (over 1 year ago)
- Topics: golang, monkey
- Language: Go
- Homepage: https://interpreterbook.com/
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```