this might be a silly question but I miss something and do not know what it is. I'm using the CLISP interpreter for my "experiments".
Given the list of lists ((a b c) (d e f)) and after applying car/cdr the output looks like the following.
> (car '((a b c) (d e f)))
> (A B C)
> (cdr '((a b c) (d e f)))
> ((D E F))
I'm helpless about the cdr output. Why is it a "list of lists" and not just a single list like the result after applying car?
regards
PS: I hope my english is somehow understandable, it is not my native language.
