[racket] Shurely Shome Mishtake

From: Mike G. (mikeg at psg.com)
Date: Sat Sep 4 16:37:00 EDT 2010

>
> (case 8
>   ((8 9 10) 'hello)
>   (else 'goodbye)) -> hello
>
> (case "8"
>   (("8" "9" "10") 'hello)
>   (else 'goodbye)) -> goodbye

case uses eqv? for its comparisons.  Two strings are eqv? only if they are
the same object, not if they have the same contents.  See the Racket help
desk for more.


Posted on the users mailing list.