python-plus-plus/ppp.py

8 lines
141 B
Python
Raw Normal View History

from ppp_interpreter import interpret_file
import sys
try:
interpret_file(sys.argv[1], {})
except RecursionError as e:
print("Recursion")