File: ExportComplex.pm

package info (click to toggle)
libtest-api-perl 0.010-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 224 kB
  • sloc: perl: 353; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 272 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
package t::lib::ExportComplex;
use strict;
use warnings;

use Exporter;
our @ISA       = qw/Exporter/;
our @EXPORT    = qw/foo bar/;
our @EXPORT_OK = qw/baz bam/;

sub foo { 1 }

sub bar { 2 }

sub baz { 3 }

sub bam { 4 }

sub bamboozle { 99 } # not exported at all

1;