7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
22 lines
234 B
Perl
22 lines
234 B
Perl
#!/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
|