Versions Compared

Key

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

The Variable Assignment operator is used only within methods (PUB and PRI blocks), to assign a value to a variable. For example,

Code Block
Temp   := 21
Triple := Temp * 3

At run time this code would set the Temp variable equal to 21 and set Triple to 21 * 3, which is 63.

...