dottedpair
A dotted pair, in the Lisp family of languages, is a simple two-element data structure formed from a cons cell. It consists of a car (the first element) and a cdr (the second element) and is written in dot notation as (car . cdr). The dot signals that the cdr is not a list.
In Lisp, a proper list is built from cons cells whose cdr so far forms another list
Printing conventions vary by context. Lists print without dots, while dotted pairs print with the explicit
Uses and significance: Dotted pairs are the fundamental building blocks of lists and more general pair-based