On 7/21/2004 8:20 PM, FyD wrote:
Dear All,
I have two perl scripts:
- The first one:
sub Tt {
$TTT = uc($TTT);
if(($TTT ne "ON") && ($TTT ne "OFF")){ print "ERROR: Check variable TTT";}
else { print "It is a Test...";}
}
# ---MAIN---
$TTT = "OFF";
Tt();
If I use $TTT = "
FyD wrote:
Dear All,
I have two perl scripts:
- The first one:
sub Tt {
$TTT = uc($TTT);
if(($TTT ne "ON") && ($TTT ne "OFF")){ print "ERROR: Check variable TTT";}
else { print "It is a Test...";}
}
# ---MAIN---
$TTT = "OFF";
Tt();
If I use $TTT = "OFF", I get 'It is a T
Dear All,
I have two perl scripts:
- The first one:
sub Tt {
$TTT = uc($TTT);
if(($TTT ne "ON") && ($TTT ne "OFF")){ print "ERROR: Check variable TTT";}
else { print "It is a Test...";}
}
# ---MAIN---
$TTT = "OFF";
Tt();
If I use $TTT = "OFF", I get 'It is a Test...' an