Subject: Re: AllegroCL: How to write a huge list in one line
From: Erik Naggum <erik@naggum.no>
Date: 2000/04/10
Newsgroups: comp.lang.lisp
Message-ID: <3164396968656316@naggum.no>

* Unai Uribarri Rodriguez <zz99f029@opalo.etsiig.uniovi.es>
| format splits the list into several lines.

  format does what it's told to do, and it doesn't have free will (it only
  feels like it until you learn its language), so you're blaming the wrong
  guy, here.  so, what, _exactly_, were you telling format to do?

| Is there any way to write a huge list to a file in an unique line?

(format <stream> "~{~A~^ ~}~%" <huge-list>)

#:Erik