Ok, I have a main script and a module I wrote, I will simplify to see if you can help.
<---------- MAIN SCRIPT ---------->
!/usr/bin/perl
use strict;
use myPM;
my $var = 'Hello World';
say_hi();
<---------- myPM SCRIPT ---------->
package myPM;
use strict;
require Exporter;
our @ISA = qw...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.