Jun

create exit program

Showing 1 changed file with 3 additions and 0 deletions
def echo(word):
if word == "exit":
print("the program exit")
exit()
print(word)
echo("test")
......