in reply to Re: Found a Perl hole
in thread Found a Perl hole
Summary:
if(chr(127) eq $types[$t])
But, what's that int doing there in your code? A perl character is a string, not a number. I bet you're thinking of the functionality offered by ord. But ord(chr(127)) is nonsense, that's just 127.
|
|---|