├── .gitignore ├── .travis.yml ├── README.md ├── memo.nim ├── memo.nimble └── test.nim /.gitignore: -------------------------------------------------------------------------------- 1 | nimcache 2 | /test -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreaferretti/memo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreaferretti/memo/HEAD/README.md -------------------------------------------------------------------------------- /memo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreaferretti/memo/HEAD/memo.nim -------------------------------------------------------------------------------- /memo.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreaferretti/memo/HEAD/memo.nimble -------------------------------------------------------------------------------- /test.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreaferretti/memo/HEAD/test.nim --------------------------------------------------------------------------------