12 lines
132 B
Python
12 lines
132 B
Python
from __future__ import annotations
|
|
|
|
from . import repl
|
|
|
|
|
|
def main() -> None:
|
|
repl.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|