Also sprach petrucci:
>> my ($root, $tail) = qw/c a/;
>
> what does it mean?
qw// is a list constructor. Items of such a list are
whitespace-delimited and so the above is equivalent to
my ($root, $tail) = ('c', 'a');
qw is handy for lists where items never contain whitespace because you
don't have to use tedious quotes around the items in case they are
strings. See the entry on "qw/STRING/" under "Regexp Quote-Like
Operators" in `perldoc perlop`.
There are similar constructs for strings (q// and qq//), regexes (qr//)
and backticks (qx//).
Tassilo
--
use bigint;
$n=71423350343770280161397026330337371139054411854 220053437565440;
$m=-8,;;$_=$n&(0xff)<<$m,,$_>>=$m,,print+chr,,while(($ m+=

<=200);