Search found 1 match

by dio
Sat Feb 26, 2011 8:01 am
Forum: Common Lisp
Topic: Newbie question 'bout car/cdr
Replies: 2
Views: 3407

Newbie question 'bout car/cdr

Hello all! Maybe this question is very easy, but I can't find the solution. the output of (caadr (cadr ’(a ’(b (c))))) is b if we'll execute the second part of the expression: (cadr ’(a ’(b (c)))), the output will be ’(b (c)) but, the output of (caadr ’(b (c))) is c, not b! Why does it h...