File: Cheese.pm

package info (click to toggle)
libpod-constants-perl 0.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 238; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 330 bytes parent folder | download | duplicates (2)
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
26
27
package Cheese;
use strict;
use warnings;

our ($foo, $quux);

sub handle_bar {
	print "GOT HERE\n";
	eval 'use ReEntrancyTest';
	print "GOT HERE TOO. \$\@ is `$@'\n";
}

use Pod::Constants -debug => 1, -trim => 1, foo => \$foo, bar => \&handle_bar, quux => \$quux;

=head1 foo

detcepxe

=head1 bar

=head2 quux

Blah.

=cut

1;