VocabularykernelInputsOutputsWord descriptionTests if the quotation yields a true value when applied to either
x or
y.
ExamplesUSING: kernel math prettyprint ;
3 6 [ odd? ] either? .
t
USING: kernel math prettyprint ;
5 7 [ even? ] either? .
f
Definition