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
- Host: GitHub
- URL: https://github.com/fraidev/roman-numerals
- Owner: fraidev
- License: mit
- Created: 2021-06-24T02:52:18.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T02:07:27.000Z (almost 4 years ago)
- Last Synced: 2025-02-12T14:28:54.297Z (3 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# roman-numerals
## How to Install
````
go get github.com/fraidev/roman-numerals
````## How to Use
````
package mainimport (
"fmt"
"github.com/fraidev/roman-numerals"
)func main() {
num := roman.ToNumber("XLII")
fmt.Printf("%d \n", num)
}