(car ((quote ((abc)))))
Try executing this piece of code; You will get an error message. What this code does is
- Create a list of characters a , b, and c ,
- Trying to execute this list as a function
- Applies the car to the result.
Since step 2 will fail (because '(abc) is not a function), step 3 is never reached.
This should be clear when looking at source code that is not part of the code.
You probably wanted to say
(car (quote ((abc))))
which is not true for the reasons given by Alex D.
source share