initial; lexer and parser

This commit is contained in:
hellerve
2015-07-07 13:51:15 +02:00
parent 0bc4bc1616
commit f9c1f2a45d
7 changed files with 490 additions and 0 deletions

12
improved/__init__.py Normal file
View File

@@ -0,0 +1,12 @@
from .interpreter import callIMP
__author__ = 'Veit Heller'
__author_mail__ = 'veit@veitheller.de'
__version__ = '0.0.1'
__url__ = 'http://github.com/hellerver/IMProved'
__longdescr__ = """
An embeddable IMP interpreter for and in
Python.
"""
__classifiers__ = ['Topic :: Software Development :: Interpreters']
__keywords__ = ['IMP', 'interpreter', 'embeddable']