![]() |
|
The stupid question is the question not asked | |
PerlMonks |
Re: conditional statement works one way, but not the otherby kcott (Archbishop) |
on May 15, 2014 at 09:09 UTC ( #1086121=note: print w/replies, xml ) | Need Help?? |
G'day igoryonya, "but this gives a syntax error" When you get errors, please post them. "I checked and rechecked, didn't find any parentacy or semicolon missing or extra." I'm fairly certain that whatever error you got said nothing about parentheses or semicolons. The error was probably more like these:
I suspect you may be confusing conditional statements (e.g. using if) with the Conditional Operator which takes operands, not Compound Statements. Writing code the way you have is highly error-prone. It's very difficult to read and a maintenance nightmare. Please read the "Perl Style Guide" — you may also find perltidy useful. -- Ken
In Section
Seekers of Perl Wisdom
|
|