Although - after a coffee - I thought thatQuote from: "cormullion"
(set 'L '(("one" "two") ("for" "you")))Code Select
(map append (L 0) (L 1))
)
was easier if you knew there were just two elements..
Bah, transpose is what I was looking for, thanks! Here is what I was looking to do:
I had a list of lists of scores, and wanted to add all scores with their respective index:
Code Select
(map (fn (x) (apply add x)) (map append (transpose scores)))