Re: Dereferencing hash with array value

2010-02-13 Thread Shawn H Corey
Dermot wrote: > On 13 February 2010 06:42, Owen wrote: >> The program below works, but I don't believe I have to make the >> reference # my $svgs = \...@svgs; to get it into the hash; >> >> I think I should be able to do something like >> >> $folders{$folder} = @svgs; >> print "$folders{Zt

Re: Dereferencing hash with array value

2010-02-13 Thread Dermot
On 13 February 2010 06:42, Owen wrote: > The program below works, but I don't believe I have to make the > reference  #  my $svgs = \...@svgs;     to get it into the hash; > > I think I should be able to do something like > >  $folders{$folder} = @svgs; >  print "$folders{Ztyx}->[3]\n"; You want

Re: Dereferencing hash with array value

2010-02-12 Thread Uri Guttman
> "O" == Owen writes: O> The program below works, but I don't believe I have to make the O> reference # my $svgs = \...@svgs; to get it into the hash; believe it. O> I think I should be able to do something like O> $folders{$folder} = @svgs; why do you think that should wo