6 releases (1 stable)
1.0.0 | Jul 17, 2020 |
---|---|
0.3.1 | Jan 12, 2017 |
0.2.0 | Jan 4, 2017 |
0.1.2 | Sep 1, 2016 |
0.1.1 | Feb 1, 2016 |
#174 in Value formatting
633 downloads per month
Used in 2 crates
8KB
175 lines
Numeral
Rust library providing the written english form of a number.
Usage
extern crate numeral;
use numeral::Cardinal;
let n = 127;
println!("{} is written: {}", n, n.cardinal());
lib.rs
:
A library providing the written english form of a number.
Example
use numeral::Cardinal;
let n = 127;
println!("{} is written {}", n, n.cardinal());