numeral 0.1.2

Written english form of a number
Documentation

Numeral

Rust library providing the written english form of a number.

Documentation

Import

Add this to your Cargo.toml:

[dependencies]
numeral = "^0.1"

and this to your crate root:

extern crate numeral;

Usage

use numeral::Numeral;

let n = 127;
println!("{} is written: {}", n, n.ordinal());