> I emphatically disagree!
:) as I told, I suppose is a matter of taste. I tend to use something like:
# complex clause if ( defined $thing and $thing > 3 and $thing <= 42 and 0 == $thing % 2 ) # ternary print (defined $thing and $thing > 0) ? $thing : 'not';
L*
In reply to Re^3: Code style question -- code review
by Discipulus
in thread Code style question
by AlexP
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |