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

https://github.com/jeronimobarea/programming-language-interpreter

Interpreter made following Plazti course : "Course of programming language interpreter with Python" https://platzi.com/clases/interpretes-software/
https://github.com/jeronimobarea/programming-language-interpreter

Last synced: 3 months ago
JSON representation

Interpreter made following Plazti course : "Course of programming language interpreter with Python" https://platzi.com/clases/interpretes-software/

Awesome Lists containing this project

README

        

# Language

Interpreter made following Platzi course : "Course of language interpreter programming with
Python" https://platzi.com/clases/interpretes-software/

# Setup

```shell
pip install --no-cache -r requirements.txt
```

# Run Repl

For running the repl.

```shell
python3.8 main.py
```

If you want to stop it.

```python
exit()
```

# Run tests

```shell
mypy . && nosetests
```

# Syntax

```js
var x = 5;
var y = 10;

var res = func(x, y) {
return x + y
}
```