Jun

create exit program

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