Boucle de remplacement Python
# Simple Python REPL loop
# as in Lisp and Scheme
while True:
s = input('--> ').strip()
print("echo input: ", s)
if (s == "quit"):
quit()
onjay ernquestfay