I want to know when an item is a cons and when it is a list
(consp (cons 1 1))
> t(listp (cons 1 1))
>t(consp (list 1 1))
>t(listp (list 1 1))
>t(nth 1 (cons 1 1))
> error not a list