1 2 3 4 5 6 7 8 9
// Copyright (C) 2019 Daniel Mueller <deso@posteo.net> // SPDX-License-Identifier: GPL-3.0-or-later //! A crate containing a number type suitable for use in financial //! contexts. mod num; pub use crate::num::Num;
1 2 3 4 5 6 7 8 9
// Copyright (C) 2019 Daniel Mueller <deso@posteo.net> // SPDX-License-Identifier: GPL-3.0-or-later //! A crate containing a number type suitable for use in financial //! contexts. mod num; pub use crate::num::Num;