1
2
3
4
5
6
7
8
9
#![crate_name = "numerals"]
#![crate_type = "rlib"]
#![crate_type = "dylib"]

//! This is a set of libraries for converting to and from various numeric systems.
//!
//! For more information, see the documentation for a particular module.

pub mod roman;