4C. logical and bitwise (AND OR) -------------------------------- These operators either combine truth values to new ones, or perform bitwise AND and OR operations. Examples: (a>1) AND ((b=2) OR (c>=3)) /* logical */ a:=b AND $FF /* bitwise */