/tiny-interpreter

A simple interpreter that can interpret Python3 byte code

Primary LanguagePython

tiny-interpreter

A simple interpreter that can interpret Python3 byte code

we all know that Python(CPython) is an Compile-Interprete language, ie. it first compile your source code to byte code, then it will interprete the byte code(execute it).

here I will implement an very simple byte code interpreter.