in reply to Array of hashes of values AND Arrays of Hashes
my $hash = { array => [ qw( foo bar ) ] }; push @{ $hash->{array} }, qw( baz quux ); print "\$hash->{array} is: @{ $hash->{array} }\n"; __output__ $hash->{array} is: foo bar baz quux
_________
broquaint
|
|---|