Version 4 of ||

Updated 2008-12-03 17:33:31 by LV

expr logical "or" operator, counterpart to &&. Returns falsity if both arguments are boolean false, and truth otherwise. Note that this operator short-circuits, and does not evaluate its second argument if the first is true. See | for bitwise "or".

Note that this operator does not have a command equivalent in tcl::mathop; use the if command instead.