16 lines
217 B
Python
16 lines
217 B
Python
|
#!/usr/bin/env python
|
||
|
"""
|
||
|
"""
|
||
|
from ptpython.python_input import PythonInput
|
||
|
|
||
|
|
||
|
def main():
|
||
|
prompt = PythonInput()
|
||
|
|
||
|
text = prompt.app.run()
|
||
|
print("You said: " + text)
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|