Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %hash = (a => 1, b => 2);
    ...
      my %h = @_;
      delete $h{'b'};
    }
    
  2. or download this
    $VAR1 = {
              'a' => 1
    ...
              'a' => 1,
              'b' => 2
            };