Closed slackydev closed 8 years ago
Added {$COPERATORS}-switch which allows to toggle ON/OFF C-like assignment operators. By default this switch is toggled ON.
ON
Supports the following operators:
i += 3;
i -= 2;
i *= 2;
i /= 2;
Operators also supports overloading.
Cool! Thanks :)
Added {$COPERATORS}-switch which allows to toggle ON/OFF C-like assignment operators. By default this switch is toggled
ON
.Supports the following operators:
i += 3;
Add 3 to I and assign the result to I;i -= 2;
Subtract 2 from I and assign the result to I;i *= 2;
Multiply I with 2 and assign the result to I;i /= 2;
Divide I with 2 and assign the result to I;Operators also supports overloading.