Sign in
googlers
/
jrn
/
git
/
e326e520101dcf43a0499c3adc2df7eca30add2d
/
.
/
t
/
t4034
/
perl
/
post
blob: e8b72ef5dcd5d3e13424e372a25d63a3df3e88ee [
file
] [
log
] [
blame
]
#!/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