OR
OR yields TRUE if at least one value is TRUE:- TRUE or TRUE = TRUE
- TRUE or FALSE = TRUE
- FALSE or TRUE = TRUE
- FALSE or FALSE = FALSE
// The statement is executed only if EITHER conditions are true: if (A = 1) OR (B = 2) then writeln('Bingo!');Source: Reserved Words