diff options
author | Sawyer X <xsawyerx@cpan.org> | 2020-09-25 20:05:47 +0200 |
---|---|---|
committer | Sawyer X <xsawyerx@cpan.org> | 2020-09-26 00:09:22 +0300 |
commit | 5d6cc1466e254bcfa41c95c42fad1818091cae64 (patch) | |
tree | 21f6ffe64420fac498339d4defe8d0ca4f34d7c2 /lib | |
parent | 54fc8aa1e9a03c45baa3ab0f1c077b71447d961f (diff) | |
download | perl-5d6cc1466e254bcfa41c95c42fad1818091cae64.tar.gz |
Last bits of Perl 6 -> Raku
Diffstat (limited to 'lib')
-rw-r--r-- | lib/feature.pm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/feature.pm b/lib/feature.pm index e14b4c1a64..7c60f1d28e 100644 --- a/lib/feature.pm +++ b/lib/feature.pm @@ -5,7 +5,7 @@ package feature; -our $VERSION = '1.60'; +our $VERSION = '1.61'; our %feature = ( fc => 'feature_fc', @@ -138,7 +138,7 @@ disable I<all> features (an unusual request!) use C<no feature ':all'>. =head2 The 'say' feature -C<use feature 'say'> tells the compiler to enable the Perl 6 style +C<use feature 'say'> tells the compiler to enable the Raku-inspired C<say> function. See L<perlfunc/say> for details. @@ -162,7 +162,7 @@ explicitly disabled the warning: no warnings "experimental::smartmatch"; -C<use feature 'switch'> tells the compiler to enable the Perl 6 +C<use feature 'switch'> tells the compiler to enable the Raku given/when construct. See L<perlsyn/"Switch Statements"> for details. |