Staging
v0.8.1
https://github.com/git/git
Raw File
Tip revision: ccef6048cd697063967e5e02937911fd8125b364 authored by Junio C Hamano on 24 August 2011, 19:16:58 UTC
Git 1.7.6.1
Tip revision: ccef604
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