Hi all, here's my question :): I define a hash array: our %R=("first" => [ "one", "two" ], "second" => ["third", "fourth"]); Now I can get back back array references from this using: $R{"first"} I also can get back the elements of this array: $R{"first"}->[0] and so on.. but i would need to pass the whole array itself, not the reference to another sub. How can I do that? thanks much, Balazs Pozsar. -- -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
- Re: hash array of arrays? Pozsar Balazs
- Re: hash array of arrays? Jos I. Boumans