or
t or u
-- returns true if
t
is true or
u
is true.
If
t
is true, then the code in
u
is not evaluated.
See also
and
and
not
.