in reply to Re^2: problems with truncate function (deparse)
in thread problems with truncate function

Hi, You are correct :-)
I ran the perl with the B::Deparse module
Perl parses the line
truncate $fh,0 || die "could not truncate $dcs_log_file: $!";
to
truncate $fh, die("could not truncate ${log_file}: $!");
Now i also understand the difference between || and or :-)

In || it makes 0|| before truncate.
with or it would make the truncate before

Thanks,
David

Replies are listed 'Best First'.
Re^4: problems with truncate function (deparse)
by MidLifeXis (Monsignor) on Jun 26, 2013 at 12:17 UTC

    See also the precedence table in perlop.

    --MidLifeXis