blob: abc797cf333e9908424bc4e2503b6d6e50bd1ced (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Template.CommonLisp
This is a template for Common Lisp systems.
It contains only the basics:
- System/package definitions
- Testing suite (using 5am)
- Makefile for compiling executable
## Usage
Modify the following files:
- README.md
- Makefile
- SYSTEM.asd
- src/SYSTEM.lisp
- test/SYSTEM-test.lisp
Do the following:
- Replace any instance of the word SYSTEM with the name of the system/project
- Fill out the headers in each file (Filename, description, AUTHOR)
## Notes
- This template assumes that Quicklisp is installed to `~/lisp/quicklisp/`.
|