- 论坛徽章:
- 0
|
我写一测试module代码如下
test.pm
- package test;
- use 5.005;
- require Exporter;
- our @ISA = qw(Exporter);
- our %EXPORT_TAGS = ( 'all' =>; [ qw() ] );
- our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
- our @EXPORT = qw( );
- our $VERSION = '0.01';
- sub TestPrint {
- print "test module";
- }
复制代码
- mtest.pl
- use test;
- test::TestPrint;
复制代码
在另一文件中调用该module时出现下面的
错误提示,请问是怎么回事,
Array found where operator expected at test.pm line 6, at end of line
(Do you need to predeclare our?)
Operator or semicolon missing before %EXPORT_TAGS at test.pm line 7.
Ambiguous use of % resolved as operator % at test.pm line 7.
Array found where operator expected at test.pm line 8, at end of line
(Do you need to predeclare our?)
syntax error at test.pm line 6, near "our @ISA "
syntax error at testl.pm line 8, near "our @EXPORT_OK "
BEGIN failed--compilation aborted at ./m_test.pl line 8.
谢谢帮忙! |
|