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