Skip to content

Commit

Permalink
Bump copyright date
Browse files Browse the repository at this point in the history
  • Loading branch information
briandfoy committed Jan 2, 2023
1 parent 94e3e2a commit 17b3259
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
7 changes: 7 additions & 0 deletions corpus/PackageImports.pm
Expand Up @@ -12,4 +12,11 @@ use Mimi qq{string};

my $cat = 'Buster';

=pod
use v5.22;
=cut


1;
2 changes: 1 addition & 1 deletion lib/Module/Extract/DeclaredMinimumPerl.pm
Expand Up @@ -171,7 +171,7 @@ brian d foy, C<< <bdfoy@cpan.org> >>
=head1 COPYRIGHT AND LICENSE
Copyright © 2011-2022, brian d foy <bdfoy@cpan.org>. All rights reserved.
Copyright © 2011-2023, brian d foy <bdfoy@cpan.org>. All rights reserved.
You may redistribute this under the terms of the Artistic License 2.0.
Expand Down
24 changes: 24 additions & 0 deletions ppr.pl
@@ -0,0 +1,24 @@

use v5.10;

use PPR;

my $perl = <<'HERE';
use v5.10;
=pod
use v5.22;
=cut
HERE

$perl =~ s{ (?&PerlNWS) $PPR::GRAMMAR }{ }gx;
say "------\n$perl\n-------\n";

while( $perl =~ / ((?&PerlUseStatement)) $PPR::GRAMMAR /gx ) {
say "<$1>";
}

0 comments on commit 17b3259

Please sign in to comment.