|
|
|
|
|
by ktRolster
3440 days ago
|
|
The ultimate goal is to build an interpreter that can run both Python 2 and 3 code. That is a great goal, I fully support you. so anyone who wants to write an interpreter that can run both kinds of code will need to decide what to do there Even if the interpreter has to decide, "this file is python2, it will do it one way.....that file is python3, it will do it another way" that is good enough. As long as you can call functions and such between the two files. |
|