12 lines
139 B
Perl
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;
|