aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorTristan Williams <tgwil@tgwil.net>2024-10-27 22:15:12 -0400
committerTristan Williams <tgwil@tgwil.net>2024-10-27 22:15:12 -0400
commit6ad840ed600bebfe4801b045a2bb24abb848b54e (patch)
tree08c6694fabc0d05b124f8360246400b948ed5e9e /README.md
downloadtemplate.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.tar.gz
template.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.tar.bz2
template.cl-6ad840ed600bebfe4801b045a2bb24abb848b54e.zip
Add everything
I've already been working on a CL template. Just add the fucker.
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 27 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..abc797c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,27 @@
1# Template.CommonLisp
2
3This is a template for Common Lisp systems.
4
5It contains only the basics:
6- System/package definitions
7- Testing suite (using 5am)
8- Makefile for compiling executable
9
10
11## Usage
12
13Modify the following files:
14- README.md
15- Makefile
16- SYSTEM.asd
17- src/SYSTEM.lisp
18- test/SYSTEM-test.lisp
19
20Do the following:
21- Replace any instance of the word SYSTEM with the name of the system/project
22- Fill out the headers in each file (Filename, description, AUTHOR)
23
24
25## Notes
26
27- This template assumes that Quicklisp is installed to `~/lisp/quicklisp/`.