``` use::binary_ok;
binaryok::tobinary(number: &f64); binaryok::todecimal(number: &f64); ```
You will have a f64 as return. ``` let x: f64 = 1110101.0; let y: f64 = 1001101.11;
let result: f64 = tobinary(todecimal(x) + to_decimal(y)); ```