On Tue, 2002-09-17 at 16:48, Anthony Saffer wrote:
> print(OUTFILE, "$PNdString\n");
> 
> This is line #19 in my code. When I run it I am told I cannot have a coma after the 
>filehandle. Why not?? I thought this was standard Perl syntax?
> 
> Anthony

Nope, you are looking at an indirect method call (OO Perl stuff).  The
actual call is

FH->print($arg1, $arg2);

But Perl lets you write it as

print FH($arg1, $arg2);

or more simply

print FH $arg1, $arg2;
-- 
Today is Setting Orange the 41st day of Bureaucracy in the YOLD 3168
Hail Eris!

Missile Address: 33:48:3.521N  84:23:34.786W


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

Reply via email to