Quick code golf: how would you transform a list `(...
# announcements
c
Quick code golf: how would you transform a list
(1, 2, 3, 4, 5)
into a list of pairs
((1,2), (2,3), (3,4), (4,5)
?