π What's New in accounting v0.3.1
- #17 Proposal: Please start using Semantic Versioning (by @KateGo520)
Unclaimed project
Are you a maintainer of accounting? Claim this project to take control of your public changelog and roadmap.
π What's New in accounting v0.3.1
accounting v0.3 includes many contributions. Thank you to all who have contributed in this great work! π
π What's New in accounting v0.3
ac = accounting.Accounting{Symbol: "$", Precision: 2}
fmt.Println(ac.FormatMoneyBigFloat(big.NewFloat(123456789.213123))) // "$123,456,789.21"
fmt.Println(ac.FormatMoneyBigFloat(big.NewFloat(12345678))) // "$12,345,678.00"
ac = accounting.Accounting{Symbol: "β¬", Precision: 2, Thousand: ".", Decimal: ","}
fmt.Println(ac.FormatMoneyBigFloat(big.Ne...