Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 204 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 204 Bytes

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());