mirror of
https://github.com/DebarghaG/proofofthought.git
synced 2025-10-07 23:24:54 +03:00
8 lines
146 B
Python
Executable File
8 lines
146 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""Convenience script to run the Z3 DSL interpreter."""
|
|
|
|
from z3dsl.cli import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|