I
Ironhide
With the code below how do I send the value of $value_to_pass to A.pm,
so that sub-routines in A.pm can use them?
A.pm
====
package A;
.....
.....
Do something with the value that I got from the perl script
test.pl
=====
use A;
my $value_to_pass= get_value(...);
sub get_value{
.....
.....
return $value
}
~hanks for your help in advance
_gourab
so that sub-routines in A.pm can use them?
A.pm
====
package A;
.....
.....
Do something with the value that I got from the perl script
test.pl
=====
use A;
my $value_to_pass= get_value(...);
sub get_value{
.....
.....
return $value
}
~hanks for your help in advance
_gourab