I totally agree that _ has its uses and can make code much more reasonable in cases where e-notation wouldn't do so. But for the specific case of having lots of 0s, I'd always prefer the e-notation, because you can just read the number of zeroes. Something like 1e32 would be difficult to count even with _-notation.
I totally agree that
_has its uses and can make code much more reasonable in cases wheree-notation wouldn't do so. But for the specific case of having lots of0s, I'd always prefer thee-notation, because you can just read the number of zeroes. Something like1e32would be difficult to count even with_-notation.true. I agree. Maybe next time, I should choose a different example. Thanks for your input, though.