Page 1 of 1

Operator /= multiplying instead of dividing.

Posted: Mon Sep 23, 2013 8:07 am
by Terciob
I'm using last core "pol-core-x64-2013-09-03" and:

Code: Select all

var math := 100;
math /= 10;
print ("math "+math);
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 := math / 10;
print ("math "+math);

Re: Operator /= multiplying instead of dividing.

Posted: Fri Oct 04, 2013 12:32 am
by Turley
Mmmmh damn fixed in latest rev.