Skip to content

Instantly share code, notes, and snippets.

@fiddlerwoaroof
Created October 25, 2018 05:30
Show Gist options
  • Save fiddlerwoaroof/c01aa7d5c6c7ac905c4a6b728642cca0 to your computer and use it in GitHub Desktop.
Save fiddlerwoaroof/c01aa7d5c6c7ac905c4a6b728642cca0 to your computer and use it in GitHub Desktop.
;;; -*- Mode:Lisp; Syntax:ANSI-Common-Lisp; Package: ASDF-USER -*-
(in-package :asdf-user)
(defsystem :my-new-system
:description ""
:author "Ed L <edward@elangley.org>"
: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