I want to map a function, (lambda (x) (+ x 1)), to a dotted pair \'(1 . 2), to get another dotted pair, \'(2 . 3). I have tested the b
(lambda (x) (+ x 1))
\'(1 . 2)
\'(2 . 3)