Version 1 of &&

Updated 2007-11-10 21:47:33 by dkf

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