mirror of
https://github.com/git-for-windows/git.git
synced 2025-12-13 08:41:13 -06:00
23 lines
234 B
Perl
23 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
|