in reply to Re: sorting scientific numbers
in thread sorting scientific numbers

That's a good theory, but the spaceship operator $a <=> $b coerces its argument into integers numbers, so this shouldn't matter. Indeed, run your code without the + 0 or simply

perl -le'$,="\n"; print sort {$a<=>$b} qw(1e-13 2e-18 1e-11)'
and you will see that the output is the same.