- or download this
put_element( $DATA{3}, 'h', 'i', 'worked' );
- or download this
put_element( \%DATA, 3, 'h', 'i', 'worked' );
- or download this
put_element( \%DATA, qw(3 h i worked) );
- or download this
sub put_element {
my ($hashref, @path) = @_;
...
# Finally, set the value at the leaf
$hashref->{$leaf} = $value;
}