[Perl] 从pm文件中导入变量

MyConfig.pm

package MyConfig;

use base qw(Exporter);
our @ISA    = qw(Exporter);
our @EXPORT = qw(%foo $bar); 

our %foo = (
        0, "A",
        1, "B"
);
our @bar = (1, 2, 3);


Test.pl

use MyConfig;

print %foo;
print @bar;

 

posted @ 2014-03-24 18:29  jimbo  阅读(806)  评论(0编辑  收藏  举报