Help for this page

Select Code to Download


  1. or download this
    my @sorted = sort keys(%sections);
    for (my $i = 0; $i < @sorted; $i++) {
    ...
        my $s = $sorted[$i];
        print a({-href => "/$sections{$s}"}, "$s HOME");
    }
    
  2. or download this
    print join("|", map { a({-href => "/$sections{$_}"}, "$_ HOME") } sort
    + keys %sections);