Created
October 25, 2018 05:30
-
-
Save fiddlerwoaroof/c01aa7d5c6c7ac905c4a6b728642cca0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*- | |
(in-package :asdf-user) | |
(defsystem :my-new-system | |
:description "" | |
:author "Ed L <[email protected]>" | |
:license "MIT" | |
:depends-on (#:alexandria | |
#:uiop | |
#:serapeum | |
#:hunchentoot | |
#:yason) | |
:serial t | |
:components ((:file "main"))) ;;; looks for main.lisp in the current directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment