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