.REPEAT Directive
|
The .REPEAT directive executes the loop body before testing the runtime condition following the .UNTIL directive.
i mod j
= i - (i div j) × j
For example,
10 mod 3 = 1 -10 mod -3 = -1 -10 mod 3 = -1 10 mod -3 = 1 |
|