Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 473 Bytes

File metadata and controls

41 lines (28 loc) · 473 Bytes

Language

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

Setup

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

Run Repl

For running the repl.

python3.8 main.py

If you want to stop it.

exit()

Run tests

mypy . && nosetests

Syntax

var x = 5;
var y = 10;

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