File: Simple6.pm

package info (click to toggle)
libpod-coverage-perl 0.23-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 240 kB
  • sloc: perl: 611; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 279 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# an exporter - 3 subs, 1 documented, 2 exportable
package Simple6;
use strict;

require Exporter;
use base 'Exporter';
use vars qw/@EXPORT @EXPORT_OK/;

@EXPORT    = qw(foo);
@EXPORT_OK = qw(foo bar);

sub foo {}
sub bar {}
sub baz {};

1;
__END__

=item bar

this is bar

=cut