Question: seq(i[1], i[1] = 1 .. 2) doesn't restore i

seq(i[1], i[1] = 1 .. 2);
i[1];
                              1, 2
                               2

I thought the note saying "The index variable i is NOT private to the seq invocation" referred only to parallel code.

Please Wait...