File: Cheese.pm

package info (click to toggle)
libpod-constants-perl 0.16-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 88 kB
  • ctags: 15
  • sloc: perl: 296; makefile: 45
file content (25 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package Cheese;

use strict;

use vars qw($foo $quux);
use Pod::Constants -debug => 1, -trim => 1,
    foo => \$foo,
    bar => sub { print "GOT HERE\n"; eval "use ReEntrancyTest";
		 print "GOT HERE TOO. \$\@ is `$@'\n"; },
    quux => \$quux,
;

=head1 foo

detcepxe

=head1 bar

=head2 quux

Blah.

=cut

1;