t / t4034 / perl / poston commit Merge branch 'py/call-do-quit-before-exit' of github.com:gitster/git-gui into py/git-gui-do-quit (0d88f3d)
   1#!/usr/bin/perl
   2
   3use strict;
   4
   5package Frotz;
   6sub new {
   7        my ($class, %opts) = @_;
   8        return bless { xyzzy => "nitfol", %opts }, $class;
   9}
  10
  11__END__
  12=head1 NAME
  13
  14frotz - Frotz
  15
  16=head1 SYNOPSIS
  17
  18  use frotz;
  19
  20  $nitfol = new Frotz();
  21
  22=cut