Hi,

I create a hash like following:


 $Data{$KEYS} = { key1 => [@array1],
                 key2 => [@array2],
                    };


with:
foreach $KEYS ( keys %Data){
print "Key1 data : @{$Data{$KEYS}{key1}}\n";
}

I manage to print the whole @array1 in one line like:

Key1 data : 4321 432 765 341

and i would like it to look like 
Key1 data :

4321
432
765
341

I still didn'n manage to get it like this.
Thanks in advance for help.


Marija

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to