(Raphael Manfredi) wrote: > Personnally, I've always disliked "and" and "or" and never used them. > I prefer to put parentheses to delimit the argument list visually, so the > precedence never bites me. $y = doit($x) || die "oops"; would become ( $y = doit($x) ) || die "oops"; to fight the precedence. Alternative: $y = doit($x) or die "oops"; -- RuudThread Previous | Thread Next