File: Export.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 (12 lines) | stat: -rw-r--r-- 136 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
package t::lib::Export;
use strict;
use warnings;

use Exporter;
our @ISA    = qw/Exporter/;
our @EXPORT = qw/foo/;

sub foo { 1 }

1;