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/
- Host: GitHub
- URL: https://github.com/jeronimobarea/programming-language-interpreter
- Owner: jeronimobarea
- License: mit
- Created: 2021-01-22T23:03:34.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-25T20:50:16.000Z (over 4 years ago)
- Last Synced: 2025-02-03T22:29:44.927Z (4 months ago)
- Language: Python
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
```