MoneyWorks Manual
Edit
Logical (Boolean) Operators
Use logical operators to build compound conditions.
| Symbol | Operation | Usage |
|---|---|---|
| And, &, && | conjunction | A and BThe result is true if both A and B are true, or false if one is false. |
| Or, |, || | disjunction | A or BThe result is true if either A or B is true, or false if both are false. |
| Not, ! | negation | not AReturns the logical negation of A.?The result is true if A is false. The result is false if A is true. |