#Bug: the expression "0-a" and "-a" will return different values, where a denotes a variable.
Created by: MolmcChen
For example: var a=5 var b=1
if 5>3 then b=0-a #b will return a value of 5 but not -5 end
Created by: MolmcChen
For example: var a=5 var b=1
if 5>3 then b=0-a #b will return a value of 5 but not -5 end