it works with decimal but not with floats
import decimal/decimal
let a = newDecimal("9999999999999999.0")
let b = newDecimal("9999999999999998.0")
echo a - b
Run
- 9999999999999999.0 – 9999999999999998.0 jasonfi
- 9999999999999999.0 – 9999999999999998.0 morturo
