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