[racket] Shurely Shome Mishtake
No mistake. case uses eqv? for comparison (on the quoted thing in each clause).
http://docs.racket-lang.org/reference/case.html?q=case#%28form._%28%28lib._racket/private/more-scheme..rkt%29._case%29%29
Robby
On Sat, Sep 4, 2010 at 3:22 PM, wooks . <wookiz at hotmail.com> wrote:
> (case 8
> ((8 9 10) 'hello)
> (else 'goodbye)) -> hello
>
> (case "8"
> (("8" "9" "10") 'hello)
> (else 'goodbye)) -> goodbye
>
> I'm working in Pretty Big
>
>
> _________________________________________________
> For list-related administrative tasks:
> http://lists.racket-lang.org/listinfo/users
>