in reply to Re: Hash part linking
in thread Hash part linking

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^3: Hash part linking
by Limbic~Region (Chancellor) on Aug 14, 2004 at 15:58 UTC
    chiburashka,
    No, that is not correct. It seems like you are trying to refer to an anonymous array before it has been created. You could do:
    my $foo = []; my $h = { word1 => [ 1..3, $foo ], word2'=> $foo, }; @$foo = (4..7);
    You could also try explaining the problem with all pertinent information in a clear and concise manner so that we could try and steer you in the right direction.

    Cheers - L~R

    A reply falls below the community's threshold of quality. You may see it by logging in.