Logical operations

OperationAliasTrue valueFalse value
andandtrue and truefalse and true
orortrue or falsefalse or false
notnotnot falsenot true
check allcheckcheck all truecheck all false

check all instruction is equivalent of and instruction with many arguments each is in new line. You can use check alias to enter check all instruction.

For example, the next expressions are equivalent.

A and B and C and D
check all
    A
    B
    C
    D
end check