Help for this page

Select Code to Download


  1. or download this
    $DATA{1}{a}{e} = 'snu';
    $DATA{2}{a}{f} = 'woo';
    $DATA{3}{b}    = 'foo';
    $DATA{4}{a}{e} = 'bar';
    $DATA{5}{d}    = 'bop';
    
  2. or download this
    put_element($DATA{3}, 'h', 'i', 'worked');
    
  3. or download this
    $DATA{3}{h}{i} = 'worked';
    
  4. or download this
    sub put_element
    {
    ...
      ${$current} = $value;
      return 1;
    }