-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-intset.asd
37 lines (28 loc) · 1 KB
/
cl-intset.asd
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
28
29
30
31
32
33
34
35
36
37
;;;; Last modified: 2013-10-09 19:14:19 tkych
;; cl-intset/cl-intset.asd
;; Copyright (c) 2013 Takaya OCHIAI <tkych.repl@gmail.com>
;; This software is released under the MIT License.
;; For more details, see cl-intset/LICENSE
;;====================================================================
;; CL-INTSET
;;====================================================================
;; cl-intset/
;; cl-intset.asd
;; intset.lisp
;; test.lisp
;; README.md
;; LICENSE
;; CHANGELOG
;;====================================================================
;; System for CL-INTSET
;;====================================================================
(asdf:defsystem #:cl-intset
:name "cl-intset"
:description "A library for non-negative integer sets.
It implements sets using bitsets."
:version "0.1.01"
:licence "MIT License"
:author "Takaya OCHIAI <tkych.repl@gmail.com>"
:components ((:file "intset"))
)
;;====================================================================