- or download this
package SharedBetweenPerls;
use warnings;
...
return $self->{'roleId'};
}
1;
- or download this
v5.24.pl:-
...
use lib '.';
my ($self) = @_;
print $self->{'roleId'};
- or download this
v5.6.pl:-
...
my $from_5.24 = qx(path-to-perl-5.24 program_for_5.24.pl "$obj");
print "Return from function: $from_5.24"; **#Not Working**