> Similarly in conditionals to make the groups stand out: > if ( defined $flag or $a == 100 or ord $char == ... ) >compared to: > if ((defined $flag) || ($a == 100) || (ord($char == ...))) You don't need all those parens. Look at how && and || work. --tomThread Previous | Thread Next