https://github.com/dwayne/hs-monkey-interpreter
An interpreter for the Monkey programming language written in Haskell.
https://github.com/dwayne/hs-monkey-interpreter
haskell interpreter monkey
Last synced: 8 months ago
JSON representation
An interpreter for the Monkey programming language written in Haskell.
- Host: GitHub
- URL: https://github.com/dwayne/hs-monkey-interpreter
- Owner: dwayne
- Created: 2022-04-13T09:29:23.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T09:36:45.000Z (about 4 years ago)
- Last Synced: 2025-10-11T23:36:48.358Z (8 months ago)
- Topics: haskell, interpreter, monkey
- Language: Haskell
- Homepage:
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hs-monkey-interpreter
An interpreter for the [Monkey programming language](https://monkeylang.org/)
written in Haskell.

## Usage
### Start the REPL
```
stack run
```
### Run the tests
All tests
```
stack test
```
A specific test
```
stack test --ta '-m '
```
For e.g. test the lexer or parser
```
stack test --ta '-m lexer'
stack test --ta '-m parser'
```