in reply to Hash of a nArray and all that comes with it.

this:

%entry = {$item_id=>\@data, $item_id=>\@data.....etc};
should be written as either:
$entry = {$item_id=>\@data, $item_id=>\@data,.....etc}; ## or %entry = ($item_id=>\@data, $item_id=>\@data,.....etc);

Replies are listed 'Best First'.
Re^2: Hash of a nArray and all that comes with it.
by kingram (Acolyte) on Jul 29, 2012 at 00:56 UTC
    Isn't ##or what I wrote? Or did you mean that to be something else?
      Nevermind. Was hard to see the braces vs parens.