http://www.perlmonks.org?node_id=19919

Buckaroo Buddha has asked for the wisdom of the Perl Monks concerning the following question: (arrays)

Hi there,
I'm trying to figure out how to make sure each array claims its own memoryspace.

How do I do that?

while <> { @record = split(',',$_); $key = shift(@record); $list{$key} = \@record; }

Originally posted as a Categorized Question.