mathy/mathstream/__main__.py
2025-11-05 16:35:15 +01:00

12 lines
132 B
Python

from __future__ import annotations
from . import repl
def main() -> None:
repl.run()
if __name__ == "__main__":
main()