Thread Sorting processes (6 answers)
Opened by Gast at 2006-11-15 19:06

sde42dn
 2006-11-27 16:00
#8966 #8966
User since
2006-10-26
11 Artikel
BenutzerIn
[default_avatar]
hello,

here a simple sort-funktion:

my @table_sort=sort { $a <=> $b }@table ;
foreach (@table_sort) {
print "$_\n";
}

View full thread Sorting processes