- or download this
# broomduster
my $h = $a{$state}{$city};
$h->{'Color'} = $color;
- or download this
# ikegami
my $r = \( $a{$state}->{$city} );
${ $r }->{Color} = $color;
- or download this
$a{'WI'}{'GreenBay'}{'Color'} = 'Black';
- or download this
# broomduster
$VAR1 = {
'WI' => {}
};
- or download this
# ikegami
$VAR1 = {
...
}
}
};
- or download this
my $h = $a{$state}{$city} ||= {};
$h->{'Color'} = $color;