mirror of
https://github.com/git/git.git
synced 2024-11-02 15:28:21 +01:00
23 lines
234 B
Text
23 lines
234 B
Text
|
#!/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
|