2025-05-19 10:20:12 +01:00

14 lines
188 B
Python

from qubed.rust import Qube, parse_qube
q = Qube()
print(q)
print(f"repr: {q.root!r} str: {q.root}")
q = parse_qube()
print(repr(q))
r = q.root
print(f"{q.root = }, {q.children = }")