├── .gitignore ├── LICENSE ├── README.md ├── constants.nimble └── src └── constants.nim /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciNim/nim-constants/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciNim/nim-constants/HEAD/README.md -------------------------------------------------------------------------------- /constants.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciNim/nim-constants/HEAD/constants.nimble -------------------------------------------------------------------------------- /src/constants.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciNim/nim-constants/HEAD/src/constants.nim --------------------------------------------------------------------------------