in reply to Re^2: Perl logical operators
in thread Perl logical operators

Idly wondering why this hasn't become the default ...

Well, at least there's this: use 5.012; and up enables strict. Backwards compatibility is a big thing with Perl 5, and hence there are often fairly long deprecation cycles for incompatible changes, and if one wants to use the newer features of the new Perl versions, use VERSION; is an easy way to do that.

See also use and feature.