Help for this page
%hash = ( 'a' => 1, 'b' => 2 ); print @hash{'a','b'}; # prints '12'
$hasref = { 'a' => 1, 'b' => 2 }; # not sure... is it $hashref->{'a','b'}? That just yields 'uninitializ +ed'.