Scientific to decimal number format converter
This library parses the input text containing a number in scientific format like:
1234.5678e2
and converts to a number represented by the following tuple:
(sign, mantissa-hi-64-bits, mantissa-lo-64-bits, exponent)
for example:
use ;
let result = number_from_string;
match result