numeral 0.1.2

Written english form of a number
Documentation
# Numeral
Rust library providing the written english form of a number.

[Documentation](https://letheed.github.io/numeral)

### Import
Add this to your `Cargo.toml`:
```toml
[dependencies]
numeral = "^0.1"
```
and this to your crate root:
```rust
extern crate numeral;
```
### Usage
```rust
use numeral::Numeral;

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