An open API service indexing awesome lists of open source software.

https://github.com/fraidev/roman-numerals

Simple library to convert roman numerals to int
https://github.com/fraidev/roman-numerals

go golang

Last synced: about 2 months ago
JSON representation

Simple library to convert roman numerals to int

Awesome Lists containing this project

README

        

# roman-numerals

## How to Install

````
go get github.com/fraidev/roman-numerals
````

## How to Use

````
package main

import (
"fmt"
"github.com/fraidev/roman-numerals"
)

func main() {
num := roman.ToNumber("XLII")
fmt.Printf("%d \n", num)
}