Help for this page

Select Code to Download


  1. or download this
    my $AoH = [ { page => 'main',
                  chap => 'About'},
    ...
    @$AoH = map { { page => $_ , chap=>$_ } } keys %uniq;
    
    print Dumper ($AoH);
    
  2. or download this
    $VAR1 = [
              {
    ...
                'page' => 'main'
              }
            ];
    
  3. or download this
    $VAR1 = [
              {
    ...
                'chap' => 'Contact'
              }
            ];
    
  4. or download this
       'page' => 'main',
       'chap' => 'About'