Legato
Legato

GoFiler Legato Script Reference

 

Legato v 1.4j

Application v 5.22b

  

 

Chapter ThreeData Types and Operators (continued)

3.16 Boolean Logical Operators

Boolean logical operators combine two operands or expressions to produce a logical outcome. The comparison results in a boolean value, either TRUE or FALSE. Operations can be performed on expressions containing variables, string literals, and numeric literals. Boolean logical operators are evaluated left-to-right. The following boolean logical operators are used in Legato:

Logical negation ! !a
Logical AND && a && b
Logical OR || a || b

Boolean logical operators are evaluated in their order of precedence as described in Section 3.12 Operator Precedence.