- Added test file.

- Created main file.
This commit is contained in:
ccremers
2005-11-16 16:44:56 +00:00
parent 2fe91a2eb1
commit 9e5a076d7d
3 changed files with 91 additions and 22 deletions

14
scripts/if2spdl/if2spdl.py Executable file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/python
from parser import *
import pprint
def main():
file = open("NSPK_LOWE.if", "r")
res = ifParse ("".join(file.readlines() ) )
pprint.pprint (res.asList())
if __name__ == "__main__":
main()