12 lines
171 B
Python
Executable file
12 lines
171 B
Python
Executable file
#!/usr/bin/env python
|
|
""" """
|
|
|
|
from ptpython.repl import embed
|
|
|
|
|
|
def main() -> None:
|
|
embed(globals(), locals(), vi_mode=False)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|