this is very similar to
How can I do list summation element-wise in R?
For example, I want
temp1<-list(c(rep(0,6)),c(1,2,3,4,5,6))
temp2<-list(c(2,3,4,5,6,7))
to yield
3,5,7,9,11,13
Just simple temp1[[2]] + temp2
doesn't work. Is there a special formula for it?