in reply to Re^2: Code style question -- code review
in thread Code style question

Hello GrandFather

> 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*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.