hi, Ihor, > ** List references in source block variable assignments are now proper lists
just for background, one oddity is that the meaning of a "list" in R is a bit loose. ---- > list(1,2,3) [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3 > c(1,2,3) [1] 1 2 3 ---- (where =c= is the "concatenation operator".) so, to me, at least, "proper list" is not a well-defined term in R. cheers, Greg