Mega Code Archive

 
Categories / Perl / Hash
 

Display a hash with print

%hash = ( width => '300', height => '150' ); $hash{ 'color' } = 'blue'; print "%hash\n";       print %hash, "\n";