germax26
7c1ce16f4b
This is the state of this project as it was back at the end of March, when I stopped working on it. I left markdown files as documentation for myself of the stuff I wanted to do.
8 lines
141 B
Python
8 lines
141 B
Python
from ppp_interpreter import interpret_file
|
|
|
|
import sys
|
|
try:
|
|
interpret_file(sys.argv[1], {})
|
|
except RecursionError as e:
|
|
print("Recursion")
|