2025-02-09 18:23:09 +01:00
|
|
|
#!/usr/bin/env python
|
2025-02-09 18:34:28 +01:00
|
|
|
""" """
|
|
|
|
|
2025-02-09 18:23:09 +01:00
|
|
|
from ptpython.python_input import PythonInput
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
prompt = PythonInput()
|
|
|
|
|
|
|
|
text = prompt.app.run()
|
|
|
|
print("You said: " + text)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|