The following script:
$a ="X";
$a++;
print $a;
$a--;
print $a;
 
prints
Y
-1
 
Why does the autoincrement work in the + direction but not in the -?  How do
I get the letter before "Y" back?  Is this a Perl bug?

_______________________________________________________
Stephan Gross       Loral Skynet     908-470-2388     [EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> 

 

Reply via email to