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