Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 435 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 435 Bytes

Factoradic

Go Reference

Factoradic provides support for factorial numbers.

Quickstart

var n Number = 23
fmt.Printf("Your number is %s.", n) // "Your number is 321."
n, _ := ParseNumber("321")
fmt.Printf("Your number in base 10 is %d.", n) // "Your number in base 10 is 23."