新手求教 require 函数问题

新手求教 require 函数问题

新手求教 require 函数问题
大家好啊,新手,碰到个问题,请教一下大家啊

我在练习使用require函数的时候 建了2个文件:

test2.pl

sub show{
print "haha";
}


test.pl

require "test2.pl";
show();

但是运行 test.pl的时候报错:

test2.pl did not return a true value at test.pl line 1.

哪位能帮忙指点一下哪里错了啊~谢谢了

Perl5的包和模块
你看一看Perl5的包和模块
test2.pl

sub show{
print "haha";
}

1;
就可以了!
关键在于 被调程序必须 要.
关键在于 被调程序的文件 必须 要有返回值 一般为 : 1;