acons
(acons o1 o2 al)
Description:
The cons of the pair (o1 . o2) to the associative
list al
Arguments:
o1 -- Scheme object
al -- Associative List
o2 -- Scheme object
Returns: A new associative list including the pair (o1 . o2)
Examples:
(acons 10 "ten" '((5 . "five") (6 . "six")))
=> ((10 . "ten") (5 . "five") (6 . "six"))