File: ViaExporter.pm

package info (click to toggle)
perlimports 0.000050-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,212 kB
  • sloc: perl: 5,860; sh: 9; makefile: 4
file content (14 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package Local::ViaExporter;

use strict;
use warnings;

use Exporter 'import';
our @EXPORT = qw(foo $foo @foo %foo);

sub foo { return 'from sub foo' }
our $foo = 1;
our @foo = ( 1 .. 10 );
our %foo = ( foo => 'bar' );

1;