summaryrefslogtreecommitdiffstats
path: root/t/t4034/perl/post
blob: e8b72ef5dcd5d3e13424e372a25d63a3df3e88ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl

use strict;

package Frotz;
sub new {
	my ($class, %opts) = @_;
	return bless { xyzzy => "nitfol", %opts }, $class;
}

__END__
=head1 NAME

frotz - Frotz

=head1 SYNOPSIS

  use frotz;

  $nitfol = new Frotz();

=cut