File: FooExport.pm

package info (click to toggle)
libclass-trait-perl 0.31-1
  • links: PTS
  • area: main
  • in suites: squeeze, wheezy
  • size: 364 kB
  • ctags: 156
  • sloc: perl: 2,467; makefile: 46
file content (13 lines) | stat: -rw-r--r-- 146 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
package FooExport;

use strict;
use warnings;

use base 'Exporter';

our @EXPORT_OK = qw/this that/;

sub this { 'this' }
sub that { 'that' }

1;