in reply to (Ovid) Re(3): What's like $+ but not gives the ordinal?
in thread What's like $+ but not gives the ordinal?

I guess there is a lot of powerful stuff going on there that I don't follow.

- for ( 1 .. $num_refs ) { + for ( $num_refs .. 1 ) {
That's not what happens when I try it. For example,
perl -e "$n=5; for($n..1) { print }"
does not print the reverse of
perl -e "$n=5; for(1..$n) { print }"