[racket] Shurely Shome Mishtake

From: Matthias Felleisen (matthias at ccs.neu.edu)
Date: Sat Sep 4 16:29:59 EDT 2010

No this is correct: 

Welcome to DrRacket, version 5.0.1.5--2010-09-02(7fead28/g) [3m].
Language: Pretty Big; memory limit: 512 MB.
> (eqv? 8 8)
#t
> (eqv? "8" "8")
#f
> 

Plus read the docs on case. 


On Sep 4, 2010, at 4:22 PM, wooks . 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



Posted on the users mailing list.