Re: nested anonymous reference syntax

2003-09-22 Thread david
[EMAIL PROTECTED] wrote: > Hello, > > I'm having trouble grasping the syntax to perform foreach operation on an > anonymous array within an anonymous hash reference. > > my $hashRef = { bah => "humbug", >list => [ "lions", "tigers", "bears", "oh_my" ], >woo => "hoo" }; here you have a h

Re: nested anonymous reference syntax

2003-09-20 Thread Rob Dixon
<[EMAIL PROTECTED]> wrote: > > I'm having trouble grasping the syntax to perform foreach operation on an > anonymous array within an anonymous hash reference. > > my $hashRef = { bah => "humbug", >list => [ "lions", "tigers", "bears", "oh_my" ], >woo => "hoo" }; > > How can I run a foreach

nested anonymous reference syntax

2003-09-20 Thread ccarver
Hello, I'm having trouble grasping the syntax to perform foreach operation on an anonymous array within an anonymous hash reference. my $hashRef = { bah => "humbug", list => [ "lions", "tigers", "bears", "oh_my" ], woo => "hoo" }; How can I run a foreach on every item in that anonymous ar