10 lines
143 B
Rust
10 lines
143 B
Rust
//! # Rusty Numbers
|
|
//!
|
|
//! Playin' with Numerics in Rust
|
|
#![forbid(unsafe_code)]
|
|
|
|
pub mod bigint;
|
|
pub mod num;
|
|
pub mod rational;
|
|
pub mod seq;
|