Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This code will not behave as expected because the binding rules are lower for the not operator than for the ! operator. This Instead, this code instead behaves as follows:

Code Block
langperl
if (not (-f $file || -w $file)) {

...