--- Deb <[EMAIL PROTECTED]> wrote:
>    map print ("\t\"$_\"\n"), @{$HashofLists{$List} };
> 
>    print (...) interpreted as function at verify_lists.pl line 55.

-w always tells you if you use a construct like this that it thinks
might not be doing what you wanted. To quiet it, just switch the
structure around:

    print map { "\t\"$_\"\n" } @{ $HashofLists{$List} };


__________________________________________________
Do you Yahoo!?
U2 on LAUNCH - Exclusive greatest hits videos
http://launch.yahoo.com/u2

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to