|
|
|
|
|
by reitzensteinm
2252 days ago
|
|
This just means that 0.3 has the same internal representation as the result of (0.1 + 0.2). Internally, they're probably both 0.30000000000000004 (depending on precision), so an equality check returns true. It could also be that they're both 3/10 rational numbers, but given other tests in this thread that's likely not the case out the box. |
|