Hallo! I have a question about adding to lists together. (map + '(1 2 3) '(3 2 1))
works fine, but I have a list of lists like (= ll '((1 2 3) '(3 2 1))
(map + ll) ; <- does not work it clear
but how could I transform it into this form (map + '(1 2 3) '(3 2 1))
thank you for help |