Groups | Search | Server Info | Login | Register
Groups > comp.lang.lisp > #60493
| From | "B. Pym" <Nobody447095@here-nor-there.org> |
|---|---|
| Newsgroups | comp.lang.lisp, comp.lang.scheme |
| Subject | Re: Newbie cluelessness continued... |
| Date | 2025-07-07 04:36 +0000 |
| Organization | A noiseless patient Spider |
| Message-ID | <104fism$2ods3$1@dont-email.me> (permalink) |
Cross-posted to 2 groups.
Tim Bradshaw wrote:
> (with-open-file (...)
> (loop for line = (read-line stream nil stream)
> until (eql line stream)
> collect line))
Gauche Scheme
(use srfi-42) ;; list-ec
(call-with-input-file "data.bak"
(lambda (port)
(list-ec (:port line port read-line) line)))
Back to comp.lang.lisp | Previous | Next — Next in thread | Find similar
Re: Newbie cluelessness continued... "B. Pym" <Nobody447095@here-nor-there.org> - 2025-07-07 04:36 +0000
Re: Newbie cluelessness continued... "B. Pym" <Nobody447095@here-nor-there.org> - 2025-07-07 05:13 +0000
Re: Newbie cluelessness continued... "B. Pym" <Nobody447095@here-nor-there.org> - 2025-08-22 10:37 +0000
Re: Newbie cluelessness continued... "B. Pym" <Nobody447095@here-nor-there.org> - 2025-07-07 18:44 +0000
csiph-web