remove repl echo (appearing when lines are continuous)
This commit is contained in:
parent
9303fcf34b
commit
438b4739d2
|
@ -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")))
|
||||
|
|
Loading…
Reference in New Issue