We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This procedure tests boolean disjunction. It differs from or in that it evaluates all its arguments and can be passed to higher-order functions.
(or? 1 2) ; 1 (or? 0 0 3) ; 3 (or? 0 "" ()) ; false