File: Exporter4.pm

package info (click to toggle)
libbadger-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: perl: 11,004; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
package My::Exporter4;
use base 'Badger::Exporter';

My::Exporter4->export_tags({
    one => [qw( $A $B )],
    two => [qw( $C $D )],
});
our ($A, $B, $C, $D) = (1, 2, 3, 4);


1;