Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/flickersoul/minipythoncompiler


https://github.com/flickersoul/minipythoncompiler

Last synced: 2 days ago
JSON representation

Awesome Lists containing this project

README

        

# Mini Python Compiler

A mini Python compiler written in C++ with flex and bison.

Should be working. There are some tests in the `./tests/` folder.

Migrated the features from the previous assignment, including inline if, repeat until, elif chain, and some other operators.

It successfully understands scopes. Therefore, new variables created in, say, if statements will not be visible outside of the statements.