numeral describes the value and symbol of a single roman numeral
| 15 | |
| 16 | // numeral describes the value and symbol of a single roman numeral |
| 17 | type numeral struct { |
| 18 | val int |
| 19 | sym string |
| 20 | } |
| 21 | |
| 22 | // lookup array for numeral values sorted by largest to smallest |
| 23 | var nums = []numeral{ |
nothing calls this directly
no outgoing calls
no test coverage detected