|
|
| XP is just a number | |
| PerlMonks |
Re: IP Accounting parserby turnstep (Parson) |
| on Jan 12, 2001 at 02:52 UTC ( #51245=note: print w/ replies, xml ) | Need Help?? |
|
Erk! This code: does not act the way you want it to. Because the || has a higher precedence than the comma, what actually happens is this: see perlop for the complete precedence list. If you really want to use the || then put parenthesis around things like so:
Better yet, use the super-low-priority or, which allows you to acheive your original effect:
Best of all, be correct and non-ambigous and use both:
In Section
Code Catacombs
|
|
||||||||||||||||||||||||