chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] Syntax of case expressions


From: Graham Fawcett
Subject: Re: [Chicken-users] Syntax of case expressions
Date: Sun, 2 Mar 2008 13:09:52 -0500

On Sat, Mar 1, 2008 at 7:40 PM, Elf <address@hidden> wrote:
>
>  id consider it a bug with the reader fighting with the macroexpander for
>  unpredictable dominance of the universe.

Just to be clear, elf -- what specifically is the bug that you see
here? Do you really see unpredictability, or just an unexpected
result? What should be the correct behaviour?

FWIW, Gambit's result in this case is identical to Chicken's:

address@hidden:~$ gsi
Gambit Version 4.0 beta 20
> (define foo 'quote)
> (case foo ('a 1) (else 2))
1

So is Guile's:

address@hidden:~$ guile
guile> (define foo 'quote)
guile> (case foo ('a 1) (else 2))
1

Graham




reply via email to

[Prev in Thread] Current Thread [Next in Thread]