Is this a good way for create a downwards array from the range operator ..?
@array = reverse 1..9;
for my $i (@array) {
print $i." "
}
# Output: 9 8 7 6 5 4 3 2 1
The question comes from the fact that the more obvious @array = 9..1; doesn't work