mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 16:24:40 +04:00
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;
|