http://qs1969.pair.com?node_id=11109089


in reply to Re^2: Strict and warnings: which comes first?
in thread Strict and warnings: which comes first?

In my environment, I prefer to specify 'feature' rather than 'version' in part because it is much easier to specify correctly. When a module fails due to compatibility issues, 'feature' helps a maintenance programmer modify the module for an older perl. (If he choses to upgrade perl, he will probably upgrade to the newest version and not care about what is the oldest one he can get away with.) I do understand that 'version' is required by many development tools. That does not apply to me - at least not yet.
Bill
  • Comment on Re^3: Strict and warnings: which comes first?

Replies are listed 'Best First'.
Re^4: Strict and warnings: which comes first?
by tobyink (Canon) on Nov 23, 2019 at 10:07 UTC

    There are a bunch of features that feature.pm doesn't enable, such as //, package NAME { BLOCK }, etc. Not that use VERSION enables them either; you just need a high enough version of Perl.