Multiplication Operator (*)

The multiplication operator computes the product of its two operands. If the expression is assigned to a variable, then the width of the destination variable is expanded as needed to accommodate the size of the result.

An XJEase variable can never overflow: it will just be extended to accommodate any new value.

Example

INT a, b, c;
a := 2;
b := 8;
c := a * b;   // c = 16 and has a width of 5