Help for this page

Select Code to Download


  1. or download this
    @first_sort = (sort { .... } keys %my_server_hash );
    
  2. or download this
    for (@first_sort) {
      if ( &goes_first( $my_server_hash{$_} )) {
    ...
    }
    # now go through those subset arrays and print them in turn;
    # alpha-sorting is preserved within each subset...