I have a very strange problem in my Kotlin app :
14.9 - 12.8 == 2.0999994
I also tried to do :
var1 = 14.9
var2 = 12.8
var1.minus(var2)
but I strangely get the same result.
How can I subtract 2 floats in Kotlin and getting a decent value, like 2.1 in this case ?