//! Run each `Scalar` operation on `f32` and `f64`: basic arithmetic identities per type
//! (`f32`, `f64`), then `sqrt` across both types.
//!//! Run with: `cargo run --example scalar`
modf32;modf64;modsqrt;fnmain(){f32::run();f64::run();sqrt::run();}