Nikola Janceski <[EMAIL PROTECTED]> wrote: > Is this correct placement of the parenthesis? > > print FILEHANDLE (list_of_print_stuff); >
Not really. It will usually work, but the FILEHANDLE
is the first argument, so it ought to be:
print(FH "foo", "bar");
--
Steve
perldoc -qa.j | perl -lpe '($_)=m("(.*)")'
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
