Skip to content

Instantly share code, notes, and snippets.

@lispm
Created June 22, 2017 21:37
Show Gist options
  • Save lispm/1a5ddb486d40c4bac8b283d376c62675 to your computer and use it in GitHub Desktop.
Save lispm/1a5ddb486d40c4bac8b283d376c62675 to your computer and use it in GitHub Desktop.
; https://github.com/inconvergent/snek
(proclaim '(inline last1 single append1 conc1 mklist))
(proclaim '(optimize speed))
(asdf:defsystem "snek"
:description "SNEK is Not an Acronym"
; :version "0.0.1"
:author "Anders Hoff"
; :licence "Public Domain"
:serial t
:depends-on ("zpng")
:components ((:file "pg-utils")
(:file "utils")
(:file "math")
(:file "rnd")
(:file "color")
(:file "linear-path")
(:file "bzspline")
(:file "sandpaint")
(:file "plot")
(:file "zmap")
(:file "snek-macros")
(:file "snek")
(:file "snek-alterations")
(:file "snek-alterations-mutate")
(:file "snek-utils")))
;;; load it with:
#|
(ql:quickload "zpng")
(load "load.lisp")
(asdf:load-system "snek")
|#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment