Subject: Re: (no subject)
From: rpw3@rigden.engr.sgi.com (Rob Warnock)
Date: 1999/03/13
Newsgroups: comp.lang.lisp
Message-ID: <7ccqde$d99n1@fido.engr.sgi.com>
Kent M Pitman  <pitman@world.std.com> wrote:
+---------------
| The simpler example would have been
|  (length (list (set! x 1)))
| since this uses the result for its objectness but not for any other
| aspect of itself.
+---------------

That's easy, (length (list (set! x 1))) ==> 1

And (list (set! x 1) (set! x 2)) ==> (#<void> #<void>)