summaryrefslogtreecommitdiff
blob: 45f81abc7b1a7489279515cafa87f613cccfbf85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(defpackage #:with-system
  (:use #:common-lisp
	#:asdf))

(in-package #:with-system)

(defsystem #:with
    :name "WITH"
    :components ((:file "with-package")
		 (:file "with" :depends-on ("with-package")))
    :depends-on (#:cl-plus))