Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Add this dictionary to your group file:

Code Block

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

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

Code Block

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

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