Description: Multiplies factor 1 by factor 2 and stores the product in the result field.
Legacy RPG400 Example:
C Factor1 MULT Factor2 Product
C MULT 4 Total 50
C MULT 4 Total 50
Modern RPGLE Example:
dcl-s Total packed(5:0);
Total = Total * 4;
// Or we could use the '*=' instruction that says "take the first value and multiply it by the second value"
Total *= 4;
