- or download this
BEGIN {
require module;
module->import();
}
- or download this
package Test1;
...
sub method { warn "method()" }
1;
- or download this
use Test1;
Test1->method();
- or download this
Test1::UNITCHECK1 running at Test1.pm line 7.
Test1::CHECK1 running at Test1.pm line 3.
Test1::INIT1 running at Test1.pm line 5.
method() at Test1.pm line 9.
- or download this
require Test1;
Test1->method();
- or download this
Test1::UNITCHECK1 running at Test1.pm line 7.
method() at Test1.pm line 9.