git.fiddlerwoaroof.com
Browse code

(init)

Ed Langley authored on 19/08/2017 00:14:30
Showing 4 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,2 @@
1
+*~
2
+*.fasl
0 3
new file mode 100644
... ...
@@ -0,0 +1,14 @@
1
+;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
2
+(in-package :asdf-user)
3
+
4
+(defsystem :araneus-2 
5
+  :description ""
6
+  :author "Ed L <edward@elangley.org>"
7
+  :license "MIT"
8
+  :depends-on (#:alexandria
9
+               #:uiop
10
+               #:serapeum
11
+               #:hunchentoot)
12
+  :serial t
13
+  :components ((:file "package")
14
+               (:file "araneus-2")))
0 15
new file mode 100644
... ...
@@ -0,0 +1 @@
1
+(in-package :araneus-2)
0 2
new file mode 100644
... ...
@@ -0,0 +1,3 @@
1
+(defpackage :araneus-2
2
+  (:use :cl :alexandria :serapeum :fwoar.lisputils)
3
+  (:export ))