Rust library providing the written english form of a number.
[Documentation](https://letheed.github.io/numeral)
Add this to your `Cargo.toml`:
```toml
[dependencies]
numeral = "^0.1"
```
and this to your crate root:
```rust
extern crate numeral;
```
```rust
use numeral::Numeral;
let n = 127;
println!("{} is written: {}", n, n.ordinal());
```