├── .gitignore ├── LICENSE ├── README.md ├── cl-template.asd ├── cl-template.lisp ├── packages.lisp ├── test ├── cl-template.lisp ├── packages.lisp └── util.lisp └── util.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #*# 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/README.md -------------------------------------------------------------------------------- /cl-template.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/cl-template.asd -------------------------------------------------------------------------------- /cl-template.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/cl-template.lisp -------------------------------------------------------------------------------- /packages.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/packages.lisp -------------------------------------------------------------------------------- /test/cl-template.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/test/cl-template.lisp -------------------------------------------------------------------------------- /test/packages.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/test/packages.lisp -------------------------------------------------------------------------------- /test/util.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/test/util.lisp -------------------------------------------------------------------------------- /util.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alpha123/cl-template/HEAD/util.lisp --------------------------------------------------------------------------------