文件名称:simplepy:简单的python解释器
文件大小:9KB
文件格式:ZIP
更新时间:2024-06-02 09:59:11
python parser interpreter ply lexer
简单的 另一个简单的python解释器 安装 pip3 install -r requirements.txt 用法 从主目录执行python脚本: $ python3 simplepy.py example/$program_name 其中$ program_name是./example中文件的名称(例如while.spy)。
【文件预览】:
simplepy-master
----.gitignore(1KB)
----requirements.txt(3B)
----README.md(289B)
----simplepy()
--------__init__.py(0B)
--------tree_printer.py(4KB)
--------lexer.py(2KB)
--------parser.py(6KB)
--------interpreter.py(3KB)
--------ast.py(2KB)
--------visit.py(1KB)
----example()
--------arthmetic_precedence.spy(67B)
--------gcd.spy(178B)
--------fib.spy(110B)
--------while.spy(54B)
--------if.spy(304B)
----simplepy.py(590B)