_Added in 1.9.0_ *$iif(C,T,F)* Returns T or F depending on whether the evaluation of the Conditional C is true or false. *Parameters* table(ktable). |*Parameter*|*Description*| | C | The expression to check. | | T | The text to use if the result is [[$true]]. | | F | The text to use if the result is [[$false]]. | _See also [[/if]]._ *Example*
; Print 'yes' or 'no' depending if 1 equals 2.
//echo -ag $iif(1 == 2, yes, no)