https://github.com/git/git
Raw File
Tip revision: 406da7803217998ff6bf5dc69c55b1613556c2f4 authored by Junio C Hamano on 02 December 2011, 17:31:32 UTC
Git 1.7.8
Tip revision: 406da78
post
#!/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
back to top