Huh

Modify echo.py

Showing 1 changed file with 3 additions and 1 deletions
1 while True: 1 while True:
2 put = input() 2 put = input()
3 - print(put)
...\ No newline at end of file ...\ No newline at end of file
3 + print(put)
4 + if (put == "exit"):
5 + break
...\ No newline at end of file ...\ No newline at end of file
......