Help for this page

Select Code to Download


  1. or download this
    PP(pp_padhv) {
        dSP; dTARGET;
    ...
        }
        RETURN;
    }
    
  2. or download this
    PP(pp_padhv)
    {
    ...
        }
        RETURN;
    }
    
  3. or download this
    my @sorted = sort{ $a <=> $b } @names;
    
  4. or download this
    my @list_of_numerically_sorted_names = sort {
        $first_element_to_be_compared
        <=>
        $second_element to be compared
    } @list_of_unsorted_names;