- or download this
package A;
use B;
...
do_something(); # subroutine in standard.pl
return $self;
}
- or download this
package B;
require 'standard.pl';
...
do_something(); # subroutine in standard.pl
return $self;
}
- or download this
# standard.pl
# [snip]
...
print "Howdy.\n";
}
1;
- or download this
Undefined subroutine A::do_something called at A.pm line X.
- or download this
do_something();
- or download this
B::do_something();