On Friday, October 11, 2002, at 01:57  PM, Larry Coffin wrote:

>> print FILEHANDLE (list, of, stuff), next if (condition);
>
> print FILEHANDLE (list, of, stuff);
> next if (condition);
>
>       In both cases, the return value of print() is getting tossed and
> the 'next if (...)' is not dependent on the print statement.

....But these two examples don't behave the same.  The first one prints 
and calls next, only on the condition.  The second one always prints 
and then calls next, if the condition is true.

James


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

Reply via email to