Versions Compared

Key

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

The Subtract operator subtracts two values. Subtract can be used in both variable and constant expressions. Example:

Code Block
X := Y - 5

Subtract has an assignment form, -=, that uses the variable to its left as both the first operand and the result destination. For example,

...