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