mes; Add read-line.

* mes/module/mes/guile.mes (read-line): New function.
This commit is contained in:
Jan Nieuwenhuizen 2018-11-11 16:57:58 +01:00
parent c61c6866b5
commit fb8a6f3408
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 13 additions and 0 deletions

View File

@ -33,6 +33,19 @@
(define (drain-input port) (read-string))
(define (read-line . rest)
(let* ((port (if (pair? rest) (car rest) (current-input-port)))
(handle-delim (if (and (pair? rest) (pair? (cdr rest))) (cadr rest) 'trim))
(c (read-char port)))
(if (eof-object? c) c
(list->string
(let loop ((c c))
(if (or (eof-object? c) (eq? c #\newline)) (case handle-delim
((trim) '())
((concat) '(#\newline))
(else (error (format #f "not supported: handle-delim=~a" handle-delim))))
(cons c (loop (read-char port)))))))))
(define (make-string n . fill)
(list->string (apply make-list n fill)))