e.g. this kind of issue?``` val a = 3 val b = 0.1...
# announcements
h
e.g. this kind of issue?
Copy code
val a = 3
val b = 0.1f
val c = 0.2f
println(a == (b + c) * 10)
false
?