├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── currency.go ├── currency_test.go ├── go.mod ├── go.sum ├── operations.go └── operations_test.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/README.md -------------------------------------------------------------------------------- /currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/currency.go -------------------------------------------------------------------------------- /currency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/currency_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/go.sum -------------------------------------------------------------------------------- /operations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/operations.go -------------------------------------------------------------------------------- /operations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naughtygopher/currency/HEAD/operations_test.go --------------------------------------------------------------------------------