in reply to Re: Terse Code for Odd Numbers
in thread Terse Code for Odd Numbers

Beautiful. The parent is the first answer that revealed something interesting to me about how perl works. For those who want to try it out, the following would be more usable, but of course less elegant.

print "$_\n" for sort {$a<=>$b} keys %{{1..14}};