Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: d5cb9cbd64165153a318e1049f8bf14b09a16b11 authored by Junio C Hamano on 26 August 2016, 20:59:20 UTC
Git 2.10-rc2
Tip revision: d5cb9cb
pre
#!/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
back to top