Consider a list l of rings or other objects.
Code:
...
def S;
int pos;
for (pos=1; pos<=size(l); pos++)
{
s=l[pos];
}
Is it necessary to kill and redefine S in each loop step?
Consider a list l of rings or other objects.
[code]...
def S;
int pos;
for (pos=1; pos<=size(l); pos++)
{
s=l[pos];
}
[/code]
Is it necessary to kill and redefine S in each loop step?