1//! Implementation of the `FEEL` number type. 2 3#[macro_use] 4extern crate dsntk_macros; 5 6mod dfp_number; 7mod errors; 8 9pub use dfp_number::FeelNumber;