- or download this
use strict;
use warnings;
...
my $installation1 = Modules::test1->new();
my $installation2 = Modules::test2->new();
- or download this
package Modules::test1;
...
print "inside new\n";
}
- or download this
package Modules::test2;
...
print "inside new\n";
}