roman-literals

roman-literals provides an easy way to write integer literals using Roman numerals.

Features

Usage

Examples

```rust use roman_literals::*;

let fortytwo: uXXXII = roman!(XLII); asserteq!(forty_two, 42);

let negative3999: iXVI = roman!(-MMMCMXCIX); asserteq!(negative_3999, -3999);

let negative300 = -CCCiLXIV; // i64 asserteq!(negative300, -300); ```

Why?

Why not?