[ Create a new account ]
$h = {a => 'b', c => 'd'}; print @h->{a,c}
doesn't show me the values for the 'a' and 'c' keys?
$h = {a => 'b', c => 'd'};print @{$h}{qw(a c)}
So one has to do @$h{'a','c'}
Get More Comments
Reply
Close... (Score:2)
--
"Cake or Death!"
Re:Close... (Score:3, Informative)
So one has to do @$h{'a','c'}