Help for this page

Select Code to Download


  1. or download this
    my @la;
    foreach my $s (sort keys(%sections)){
      push @la,a({-href => "/$sections{$s}"}, "$s HOME");
    }
    print join(" |",@la);
    
  2. or download this
    my @la=map { a( {-href => "/$sections{$_}"}, "$_ HOME" ) } sort keys %
    +sections;
    
  3. or download this
    $\ = "\n";