(set-car! pair argument)) -> pair
Destructively replaces the car of the given pair with argument.
Example:
Assuming that we have previously defined the symbol song as (Mary had a little lamb),
>>(set-car! song 'Alice) :: #f
>>song :: (Alice had a little lamb)
See Also: set-cdr!