1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-29 14:30:34 +02:00

Clarify open-input-pipe example in doc

This commit is contained in:
Daniel Llorens 2020-01-24 12:28:29 +01:00
parent ddcab06f20
commit 0fee413ff8

View file

@ -2322,7 +2322,7 @@ Equivalent to @code{open-pipe} with mode @code{OPEN_READ}.
@lisp
(let* ((port (open-input-pipe "date --utc"))
(str (read-line port)))
(str (read-line port))) ; from (ice-9 rdelim)
(close-pipe port)
str)
@result{} "Mon Mar 11 20:10:44 UTC 2002"