> Specifically
> # append new members to an existing family
> push @{ $HoL{"flintstones"} }, "wilma", "betty";
>
> I don't understand why the construct @{ x } is written that way.
Step by step, what it does is:
1. Dereference the List in the Hash with key "flinstones" ---> @{$array_ref}
I've changed the subject of this thread. In the future, please post
messages with a relevant subject line.
On Fri, Aug 17, 2001 at 12:53:22PM -0600, Tyler Cruickshank wrote:
> %browns = ();
>
> for($i=1; $i<=3; $i++){
>
>$hour = "hr$i";
>$root = 'data.';
>$name = "$root$hour";
>