We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This operator tests boolean disjunction. It short-circuits; if it finds a true value, it stops.
(or 1 2) -> 1 (or 0 0 3) -> 3 (or 0 "" ()) -> false