Jun

create exit program

Showing 1 changed file with 3 additions and 0 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") 6 echo("test")
......