Versions Compared

Key

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

Modulus can be used in both variable and integer constant expressions, but not in floating-point constant expressions. Modulus divides one value by another and returns the 32-bit integer remainder. Example:

Code Block
X := Y // 4 

If Y started out as 5 then Y // 4 equals 1, meaning the division of 5 by 4 results in a real number whose fractional component equals ΒΌ, or .25.

...