in reply to Re: When was $@ scope in sigdie fixed?
in thread When was $@ scope in sigdie fixed?

require v5.014_000;
looks wrong. Shouldn't that be
require 5.014_000;
or
require v5.14.0;

Replies are listed 'Best First'.
Re^3: When was $@ scope in sigdie fixed?
by Apero (Scribe) on Dec 09, 2015 at 13:52 UTC

    You're right that the first of your suggested forms is the recommended method for maximum comparability.

    Incidentally, any of those 3 forms work counting mine, at least in reasonably-recent Perl versions (though I'm not exactly sure how old would break with that.) I had intended for the form that dropped the leading v as the documentation says it's more backwards-compatible, but there it is.