Python Rept Loop

# Simple Python REPL loop
# as in Lisp and Scheme 

while True:
    s = input('--> ').strip()
    print("echo input: ", s)
    if (s == "quit"): 
        quit()
onjay ernquestfay