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

MyConfig.pmspa

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.plcode

use MyConfig;

print %foo;
print @bar;
相关文章
相关标签/搜索