Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
d = (s?-1:1) * m * double.Exp10(e);
if (s) then
d = -m * radix(d)**e
else
d = m * radix(d)**e
end if
$d = ($s?-1:1) * "${m}e${e}";
d = (s ? -1 : 1) * Math::ldexp(m, e)
let d = if s { -1.0 } else { 1.0 } * m as f64 * 2.0f64.powf(e as f64);