Four numeric assignment operators (+=, -=, *= and /=) are now supported for the LET statement. These operators can be used when adding, subtracting, multiplying, or dividing a variable and assigning the result to the same variable. Thus, a statement previously coded asIF ( X:=POS(X$,Y$) ) THEN GOTO LINE_LABEL
LET NUM_DAYS=NUM_DAYS+6
can now be coded as:
Besides offering substantial savings in code size and execution time, this feature helps prevent the typing errors that can occur with the use of longer variable names. See your Supplemental Programs diskette or your initial Business Rules! 3.50 system for a copy of the program PLUSEQ.WB if you wish to automatically change existing programs to take advantage of this feature.LET NUM_DAYS+= 6