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