VocabularykernelInputsOutputsWord descriptionChooses between two values depending on the boolean value of
?.
ExamplesUSING: io kernel math ;
3 4 < "3 is smaller than 4" "3 is not smaller than 4" ? print
3 is smaller than 4
USING: io kernel math ;
4 3 < "4 is smaller than 3" "4 is not smaller than 3" ? print
4 is not smaller than 3
Definition