From: Rafael Garcia-Suarez Date: Wed, 8 Jul 2009 09:58:41 +0000 (+0200) Subject: Mention in perldelta that "use 5.011" enables strictures X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4b3db487f2a64105d4cb4cbb187011b49745df03;p=p5sagit%2Fp5-mst-13.2.git Mention in perldelta that "use 5.011" enables strictures --- diff --git a/pod/perl5110delta.pod b/pod/perl5110delta.pod index b6f8619..e9e9efa 100644 --- a/pod/perl5110delta.pod +++ b/pod/perl5110delta.pod @@ -129,6 +129,19 @@ line match modifier C. (If C<\N> is followed by an opening brace and by a letter, perl will still assume that a Unicode character name is coming, so compatibility is preserved.) (Rafael Garcia-Suarez) +=head2 Implicit strictures + +Using the C syntax with a version number greater or equal +to 5.11.0 will also lexically enable strictures just like C +would do (in addition to enabling features.) So, the following: + + use 5.11.0; + +will now imply: + + use strict; + use feature ':5.11'; + =head2 Parallel tests The core distribution can now run its regression tests in parallel on