VocabularymathInputsOutputsWord descriptionMakes an implicit check if the number is zero. A zero is dropped and the
quot is called.
ExamplesThis word is equivalent to
if-zero with an empty second quotation:
USING: math prettyprint ;
0 [ 4 ] [ ] if-zero .
4
USING: math prettyprint ;
0 [ 4 ] when-zero .
4
See alsoif-zero,
unless-zero,
until-zeroDefinition