VocabularykernelInputsOutputsWord descriptionCalls
quot on
x,
y, and
z and keeps those three values under the boolean result from the
quot.
ExamplesTrue case:
USING: arrays kernel math prettyprint ;
3 4 5 [ + + even? ] 3check 4array .
{ 3 4 5 t }
False case:
USING: arrays kernel math prettyprint ;
3 4 5 [ + + odd? ] 3check 4array .
{ 3 4 5 f }
See also1check,
1guard,
2check,
2guard,
3guardDefinition