1#!/usr/bin/perl
23
use strict;
45
package Frotz;
6sub new {
7my ($class, %opts) = @_;
8return bless { xyzzy => "nitfol", %opts }, $class;
9}
1011
__END__
12=head1 NAME
1314
frotz - Frotz
1516
=head1 SYNOPSIS
1718
use frotz;
1920
$nitfol = new Frotz();
2122
=cut