Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/morinokami/pymonkey
A Python version of the monkey programming language interpreter.
https://github.com/morinokami/pymonkey
Last synced: about 1 month ago
JSON representation
A Python version of the monkey programming language interpreter.
- Host: GitHub
- URL: https://github.com/morinokami/pymonkey
- Owner: morinokami
- Created: 2018-08-15T08:58:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-24T04:38:19.000Z (over 6 years ago)
- Last Synced: 2024-10-12T11:09:05.827Z (3 months ago)
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pymonkey
A Python version of the monkey programming language interpreter.
The monkey language is described and implemented in [Writing An Interpreter In Go](https://interpreterbook.com/).## Usage
```bash
$ git clone [email protected]:morinokami/pymonkey.git
$ cd pymonkey
$ pip install .
$ pymonkey
Hello user! This is the Monkey programming language!
Feel free to type in commands
>> puts("hello monkey")
hello monkey
null
```