I am trying to evaluate the following example inside my code, but getting the wrong answer:
julia> -1.259237254330301e-29*10^29
-9.930838679817422e-11
The answer is clearly wrong, -1.259237254330301 is expected. I got the right answer by
julia> -1.259237254330301e-29*1e29
-1.2592372543303008
anyone know the reason?