Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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
```