###Conversions from and to roman numerals in rust lang.
A simple program that allows conversions from roman to arabic numerals and vice versa.
List of functions available:
to_arabic(roman: &str) -> Option<usize>
to_roman(number: usize) -> Option<String>
Also handles validation of roman numerals.