>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/

Reply via email to