1our $VERSION = '0.01';
2
3=head1 NAME
4
5Foo::Bar - Get the Foo out of the Bar!
6
7=head1 SYNOPSIS
8
9  my $bar = Foo::Bar->new;
10  while (my $drink = $bar->gulp) {
11      say 'Belch!';
12  }
13
14=head1 DESCRIPTION
15
16This is the description. Blah blah blah.
17
18=head2 Interface
19
20This is all about the interface.
21
22=head3 C<new>
23
24Gotta cover the C<new()> method.
25
26=head3 C<gulp>
27
28Thirsty?
29
30=head1 AUTHOR
31
32Someone Else
33
34=head1 COPYRIGHT
35
36Copyright (c) Someone Else 2009, some rights reserved.
37
38This module is free software; you can redistribute it and/or modify it under
39the same terms as Perl itself.
40
41=cut
42
43package Foo::Bar;
44
45our $VERSION = '0.41';
46