echo.py 117 Bytes Raw Blame History Permalink 1 2 3 4 5 6 def echo(word): if word == "exit": print("the program exit") exit() print(word) echo("test")