1
0
Fork 0
pre-commit/testing/resources/perl_hooks_repo/lib/PreCommitHello.pm

13 lines
139 B
Perl
Raw Normal View History

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