in reply to Graph model problem.
return {%hash}; $node=""; @parents=(); @nodevalues=(); %hash=(); @nodeindex=(); @temparray=(); $string=""; @temp=(); $s=""; }
Are you aware that the effect of a return statement is immediate?
All those assignments after the return, above, don't get executed.
|
|---|