Help for this page

Select Code to Download


  1. or download this
     my %hash =(
              'script' => 'foo.pm',
              'params' => {
    ...
                               },
               'testset' => ['test1']
            );
    
  2. or download this
    foreach my $key (keys %hash) {
        if ( ref $hash{$key} ne 'HASH' && ref $hash{$key} ne 'ARRAY' ) {
    ...
            print"$key:$hash{$key}[0]\n";
        }
    }