Python interpreter that uses a recursive descent parser to tokenize and process a corpus containing python code.
- Clone the repo
git clone https://github.com/dturnover/Python-Interpreter/
The resulting executable from the makefile is statement.x. An input file should be a .txt containing python code (I included a sample input file). To run the interpreter: ./statement.x an_input_file.txt
Variables for ints, doubles, strings and booleans are supported For loops, if/else statements, print statemtents, and arithmetic expressions are supported Functions are not supported print statements are of the form: print [testlist]
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Desmond Turner - desmondegt@gmail.com