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"
- Host: GitHub
- URL: https://github.com/douglascdev/wait
- Owner: douglascdev
- Created: 2024-07-16T16:27:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-16T18:43:38.000Z (almost 2 years ago)
- Last Synced: 2025-11-20T02:30:58.558Z (7 months ago)
- Language: Go
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```