Thread
Sorting processes
(6 answers)
Opened by Gast at
2006-11-15 19:06
sde42dn
2006-11-27 16:00
User since
2006-10-26
11 Artikel
BenutzerIn
hello,
here a simple sort-funktion:
my @table_sort=sort { $a <=> $b }@table ;
foreach (@table_sort) {
print "$_\n";
}
View full thread
Sorting processes