in reply to Explanation of an one-liner

Let's not forget B::Deparse
E:\>perl -MO=Deparse,-p -ne"print if 15 .. 17 " LINE: while (defined(($_ = <ARGV>))) { ((15 .. 17) and print($_)); } -e syntax OK E:\>perl -MO=Deparse -ne"print if 15 .. 17 " LINE: while (defined($_ = <ARGV>)) { print $_ if 15 .. 17; } -e syntax OK
Now if still there is some confusion (like the range operator), perldoc my friend, perldoc ;)

MJD says "you can't just make shit up and expect the computer to know what you mean, retardo!"
I run a Win32 PPM repository for perl 5.6.x and 5.8.x -- I take requests (README).
** The third rule of perl club is a statement of fact: pod is sexy.