9e5a076d7d
- Created main file.
15 lines
214 B
Python
Executable File
15 lines
214 B
Python
Executable File
#!/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()
|