Jun

create exit program

Showing 1 changed file with 4 additions and 1 deletions
1 def echo(word): 1 def echo(word):
2 + if word == "exit":
3 + print("the program exit")
4 + exit()
2 print(word) 5 print(word)
3 -echo("test")
...\ No newline at end of file ...\ No newline at end of file
6 +echo("test")
......