If I have a list like so:
L[2][2]
It will be like this won't it?
L[1] = L[1][1] L[1][2]
L[2] = L[2][1] L[2][2]
My question is, does that mean there are 6 things in my list or just 4?
Also, how do you write to an association?
I couldn't do this:
L[1][2] = src.icon
It would add a list into L[1][2] rather than an icon. The list inside L[1][2] will have an icon though.
|
|||||||||||||
