Files
proofofthought/run_interpreter.py
2025-10-02 14:32:13 -04:00

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()