Hello,
when using references, I stumbled over he following question:
what does
Code:
link(reference)
exacly do?
Code:
system("reference");
ring rng=0,x,dp;
attrib(rng,"name","rng");
reference rngRef=rng;
attrib(rngRef,"nameRef","rngRef");
attrib(rngRef,"nameRef");
def linkedRng=link(rngRef); // what happens behind the scenes?
attrib(linkedRng,"nameRef"); // not present, why?
attrib(linkedRng,"name"); // not present, why?
Why does attrib not work for the linked object?
Should it work, or do I misunderstsand the concepts?
Jack