Operator /= multiplying instead of dividing.
Posted: Mon Sep 23, 2013 8:07 am
I'm using last core "pol-core-x64-2013-09-03" and:
prints 1000 instead of 10, so i think "/=" is multiplying instead of dividing.
And only occurs with "/=" operator, example bellow is fine:
Code: Select all
var math := 100;
math /= 10;
print ("math "+math);And only occurs with "/=" operator, example bellow is fine:
Code: Select all
var math := 100;
math := math / 10;
print ("math "+math);