mirror of
https://github.com/git/git.git
synced 2024-11-01 23:07:55 +01:00
5269edf170
Signed-off-by: Junio C Hamano <gitster@pobox.com>
22 lines
202 B
Perl
22 lines
202 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
|
|
package Frotz;
|
|
sub new {
|
|
my $class = shift;
|
|
return bless {}, $class;
|
|
}
|
|
|
|
__END__
|
|
=head1 NAME
|
|
|
|
frotz - Frotz
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
use frotz;
|
|
|
|
$nitfol = new Frotz();
|
|
|
|
=cut
|