Description: Subtracts factor 2 from factor 1 and stores the result in the result field.
Legacy RPG400 Example:
C Factor1 SUB Factor2 Result
C SUB 3 Total 50
C SUB 3 Total 50
Modern RPGLE Example:
dcl-s Total packed(5:0);
Total -= 3;
// Or:
Total = Total - 3;
