master
Number.UpperRoman
func (n Number) UpperRoman() (string, error) { // Catch edge cases first. switch { case n == 0: return "N", nil