pre-commit/testing/resources/perl_hooks_repo/lib/PreCommitHello.pm
2020-02-01 15:41:14 +02:00

12 lines
139 B
Perl

package PreCommitHello;
use strict;
use warnings;
our $VERSION = "0.1.0";
sub hello {
print "Hello from perl-commit Perl!\n";
}
1;