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