diff options
Diffstat (limited to 'third_party/git/t/t4034/perl/pre')
-rw-r--r-- | third_party/git/t/t4034/perl/pre | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/third_party/git/t/t4034/perl/pre b/third_party/git/t/t4034/perl/pre new file mode 100644 index 000000000000..f6610d37b8aa --- /dev/null +++ b/third_party/git/t/t4034/perl/pre @@ -0,0 +1,22 @@ +#!/usr/bin/perl + +use strict; + +package Frotz; +sub new { + my $class = shift; + return bless {}, $class; +} + +__END__ +=head1 NAME + +frotz - Frotz + +=head1 SYNOPSIS + + use frotz; + + $nitfol = new Frotz(); + +=cut |