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