git.fiddlerwoaroof.com
fiddlerwoaroof authored on 15/02/2016 16:45:59
Showing 4 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+This is the stub README.txt for the "simple_list" project.
0 2
new file mode 100644
... ...
@@ -0,0 +1,5 @@
1
+;;;; package.lisp
2
+
3
+(defpackage #:simple_list
4
+  (:use #:cl))
5
+
0 6
new file mode 100644
... ...
@@ -0,0 +1,16 @@
1
+;;;; simple_list.asd
2
+
3
+(asdf:defsystem #:simple_list
4
+  :description "Describe simple_list here"
5
+  :author "Your Name <your.name@example.com>"
6
+  :license "Specify license here"
7
+  :depends-on (#:clonsigna
8
+               #:cl-smtp
9
+               #:alexandria
10
+               #:anaphora
11
+               #:serapeum
12
+               #:fwoar.lisputils)
13
+  :serial t
14
+  :components ((:file "package")
15
+               (:file "simple_list")))
16
+
0 17
new file mode 100644
... ...
@@ -0,0 +1,6 @@
1
+;;;; simple_list.lisp
2
+
3
+(in-package #:simple_list)
4
+
5
+;;; "simple_list" goes here. Hacks and glory await!
6
+