Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Data::Dumper;
    ...
     %{$h_ref}->{E} = '5';  # this is what it's doing
     $$h_ref{F}     = '6';  # you could do this too
    }
    
  2. or download this
    Before sub:$VAR1 = {
              'A' => '1',
    ...
              'D' => '4',
              'E' => '5'
            };