------=_NextPart_000_0006_01C89ADC.C23D2990
Content-Type: text/plain;
charset="gb2312"
Content-Transfer-Encoding: quoted-printable
Hi,
Assuming my script use a strict pragma.=20
If I have a lexical variable declared inside a sub routine and I wish to =
globalize this lexical variable, what are the various options to =
globalise this variable?
Thanks
###############
use strict;
use warnings;
testing();
sub testing {
my $variable =3D 2;
print "I can see you Mr $variable\n";
}
print "So what are the various options to globalise this \$variable =
which is $variable\n";
------=_NextPart_000_0006_01C89ADC.C23D2990--