https://github.com/doccaico/monkey-nim
Monkey programming language written in Nim
https://github.com/doccaico/monkey-nim
Last synced: 11 months ago
JSON representation
Monkey programming language written in Nim
- Host: GitHub
- URL: https://github.com/doccaico/monkey-nim
- Owner: doccaico
- Created: 2020-11-03T11:28:16.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-07T06:31:33.000Z (almost 5 years ago)
- Last Synced: 2025-02-24T08:34:24.624Z (over 1 year ago)
- Language: Nim
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## monkey-nim
Monkey programming language interpreter designed in [Writing An Interpreter In Go](https://interpreterbook.com). I written this in Nim for learning purpose.
I skipped ...
- 4.4 - Array
- 4.5 - Hashes
- 4.6 - The Grand Finale
## Usage
```
# Arc
$ nim r --gc:arc src/monkey_nim.nim
# Orc
$ nim r --gc:orc src/monkey_nim.nim
```
## Test
```
$ testament r tparser.nim
$ testament r tlexer.nim
$ testament r tevaluator.nim
```