1
2
3
4
5
6
7
8
9
10
11
use arpfloat::{Float, Semantics};

///! Calculates long numbers and prints them.
///!  cargo run --example print_bench --release

fn main() {
    let sem = Semantics::new(32, 5000);
    let val = Float::e(sem);
    println!("F64: {}", val.as_f64());
    println!("FP*: {}", val);
}