This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pythue/main.py
2018-10-28 02:44:39 -04:00

15 lines
202 B
Python

import thue.parser
def main():
with open('testing.ret') as f:
src = f.read()
pgm = thue.parser.compile(src)
res = pgm.run()
print(res)
if __name__ == '__main__':
main()