>Does anybody know how to call a subroutine that is in a .pm file from
>another .pm file.
Welp, if &subroutine_1 is in Library1.pm,
then within Library2.pm, you could do something like:
sub subroutine_2 {
require "/path/to/Library1.pm";
&subroutine_1;
}
Morbus Iff
.sig on other machine.
http://www.disobey.com/
http://www.gamegrene.com/
- subroutines in .pm Morse, Loretta
- Re: subroutines in .pm Morbus Iff
- Re: subroutines in .pm Michael Lamertz
- Re: subroutines in .pm Paul
- RE: subroutines in .pm Morse, Loretta
- Re: subroutines in .pm C.J. Collier
- Re: subroutines in .pm Michael Lamertz
- RE: subroutines in .pm Timothy Kimball
- Re: subroutines in .pm Johnathan Kupferer
- RE: subroutines in .pm Morse, Loretta
