Help for this page

Select Code to Download


  1. or download this
    my @unwanted = qw( schema log );
    my %hash = (schema=>1, log=>2, aa=>3);
    ...
    $VAR1 = {
              'aa' => 3
            };
    
  2. or download this
    my @unwanted = qw( schema log );
    my %hash = (schema=>1, log=>2, aa=>3);
    ...
              'log' => 2,
              'schema' => 1
            };