15 lines
218 B
Python
Executable file
15 lines
218 B
Python
Executable file
#!/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()
|