http://qs321.pair.com?node_id=645264


in reply to while going through perldsc tutorial...

In the line marked #WRONG, the reference is always taken to @array which is only allocated once in the program (probably implicitly). Therefore, on each iteration, @array gets new values, and its location gets stored and all those references refer to the last set of values. To fix it, declare @array on each iteration:
my @array = somefunc($i);
Then, new memory is allocated each time and the references are to those different memory areas.

Phil

The Gantry Web Framework Book is now available.