Help for this page

Select Code to Download


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