Re: (case 'quote ('lambda 1) (otherwise 2))




David Wragg wrote:
I have found 2 Common Lisp implementations that think that the above
code evaluates to 1. This is quite surprising to me.

You probably meant to say...

(case 'quote (lambda 1) (otherwise 2))

....to compare the symbol "quote" to the symbol "lambda".

Greg Buchholz

.