my %h = ( fruits => { p => [ 'peach' ], g => [ 'grapes' ], }, birds => { p => [ 'parrot' ], c => [ 'crow' ], } ); #### @all_p_fruits = @{$h{fruits}->{p}}; #### push @{$h{fruits}->{p}}, 'peach_yellow';
## @all_p_fruits = @{$h{fruits}->{p}}; ##
## push @{$h{fruits}->{p}}, 'peach_yellow';