Email list hosting service & mailing list manager

nested comments David Van Horn (04 Jan 2005 22:06 UTC)
Re: nested comments Robby Findler (04 Jan 2005 22:17 UTC)
Re: nested comments Taylor Campbell (04 Jan 2005 23:10 UTC)
Re: nested comments Per Bothner (05 Jan 2005 00:18 UTC)
Re: nested comments Taylor Campbell (05 Jan 2005 00:45 UTC)

Re: nested comments Robby Findler 04 Jan 2005 22:17 UTC

At Tue,  4 Jan 2005 17:06:53 -0500, David Van Horn wrote:
> What does the following evaluate to?
>
>    (list 'x #;#;'y 'z)

FWIW, mzscheme and chez scheme do the same thing:

% petite
Petite Chez Scheme Version 6.9c
Copyright (c) 1985-2003 Cadence Research Systems

> (list 'x #;#;'y 'z)
(x)
> ^D

% mzscheme
Welcome to MzScheme version 299.25, Copyright (c) 2005 PLT Scheme, Inc.
loading .mzschemerc...
> (list 'x #;#;'y 'z)
(x)
> ^D

Robby