Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Add this dictionary to your group file:

isFalse ::= ["false":"true"]

It returns true if the value is false, and null otherwise. Then you can use it in 'if statements'.

main(nullValue, falseValue) ::= <<
$if(isFalse.(falseValue))$
    falseValue value is false;
$endif$

$if(!isFalse.(nullValue))$
    nullValue is NOT false;
$endif$
>>
  • No labels