You can sort several lists at the same time:
%countries=('976','Mongolia','52','Mexico','212','Morocco','64','New Zealand','33','France');
@nations=qw(China Hungary Japan Canada Fiji);
@sorted= sort values %countries, @nations;
foreach (@nations, values %countries) {
print "$_\n";
}
print "#----\n";
foreach (@sorted) {
print "$_\n";
}
No comments:
Post a Comment