File: Bar.pm

package info (click to toggle)
libsub-uplevel-perl 0.2800-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 260 kB
  • sloc: perl: 671; makefile: 2
file content (8 lines) | stat: -rw-r--r-- 131 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
package Bar;
use warnings;
use strict;
require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw( func3 );
sub func3 { 3 }
1;