Versions Compared

Key

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

The Boolean AND 'AND' operator compares two operands and returns TRUE (-1) if both values are TRUE (non-zero), or returns FALSE (0) if one or both operands are FALSE (0). Boolean AND can be used in both variable and constant expressions.

Example:

Code Block
X := Y AND Z

...