in reply to Hash of arrays

If you see something that looks like ARRAY(0x123456) then this means you have an ARRAY reference, and need to de-reference it. Here's some typical examples:
my @array = @$array_ref; my %hash = %$hash_ref; my $scalar = $$scalar_ref;

Replies are listed 'Best First'.
Re: Re: Hash of arrays
by heezy (Monk) on Oct 28, 2002 at 16:03 UTC

    This is a very useful quick referenece guide, thanks!

    M