7 lines
126 B
Perl
7 lines
126 B
Perl
|
%hash = ( width => '300', height => '150' );
|
||
|
$hash{ 'color' } = 'blue';
|
||
|
|
||
|
|
||
|
print "%hash\n";
|
||
|
print %hash, "\n";
|