Just a few comments
@types[++$#types] = chr $temp;this can be written:
push(@types, chr $temp);
@types is an array. So @types[2] is an array slice with one item. Perhaps you're trying to access the third element of the array? In which case you would access that item using $types[2]
In reply to Re^2: Found a Perl hole
by osunderdog
in thread Found a Perl hole
by NewsToYou!
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |