In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] (Jeff 'Japhy' Pinyan) writes:
>
>>> if (condition) {
>>> print FILEHANDLE list, of, stuff;
>>> next;
>>> }
>>
>I rarely do that. Unless the body of the block is going to be enormous, I
>do it without the block. However, I think print(FOO @list) looks really
>odd, so I'd probably do
>
> (print FOO @list), next if $condition;
The parens feel funny to me. I usually write this as
print FOO @list and next if $condition;
--
Peter Scott
http://www.perldebugged.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]