Merge branch 'mp/complete-paths'
[git/mingw.git] / t / t4034 / perl / post
blobe8b72ef5dcd5d3e13424e372a25d63a3df3e88ee
1 #!/usr/bin/perl
3 use strict;
5 package Frotz;
6 sub new {
7 my ($class, %opts) = @_;
8 return bless { xyzzy => "nitfol", %opts }, $class;
11 __END__
12 =head1 NAME
14 frotz - Frotz
16 =head1 SYNOPSIS
18 use frotz;
20 $nitfol = new Frotz();
22 =cut