Skip to content
Snippets Groups Projects
Commit 52c74ba5 authored by Daniel Barlow's avatar Daniel Barlow
Browse files

syntactic legality is a good thing

parent e745241c
Branches
Tags
No related merge requests found
(in-package :cl-user)
(defpackage :cclan (:use #:cl #:asdf)
:export #:make-tar-file)
(:export #:make-tar-file))
;;; -*- Lisp -*-
(defpackage :cclan-system (:use #:cl #:asdf))
(defsystem 'cclan
:components
(:file "cclan-package")
(:file "cclan" :depends-on ("cclan-package")))
\ No newline at end of file
(defsystem cclan
:version "0.0"
:components ((:file "cclan-package")
(:file "cclan" :depends-on ("cclan-package"))))
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment