diff --git a/contrib/20.repl/repl.scm b/contrib/20.repl/repl.scm index bed94d0e..f745ce4e 100644 --- a/contrib/20.repl/repl.scm +++ b/contrib/20.repl/repl.scm @@ -35,7 +35,7 @@ (define (repl) (let loop ((buf "")) - (let ((line (readline (if (equal? buf "") "> " "* ")))) + (let ((line (readline (if (equal? buf "") "> " "")))) (if (eof-object? line) (newline) ; exit (let ((str (string-append buf line "\n")))