Interpreter made following Platzi course : "Course of language interpreter programming with Python" https://platzi.com/clases/interpretes-software/
pip install --no-cache -r requirements.txt
For running the repl.
python3.8 main.py
If you want to stop it.
exit()
mypy . && nosetests
var x = 5;
var y = 10;
var res = func(x, y) {
return x + y
}