Skip to content

Instantly share code, notes, and snippets.

View johnhilts's full-sized avatar

John Hilts johnhilts

View GitHub Profile
@lukego
lukego / standalone
Created April 7, 2021 14:39
Standalone SBCL application
[luke@thinky:~/standalone]$ cat standalone.lisp
;; Load any libraries that we want.
(require :uiop)
;; Load any data that we want.
(defvar *protocols-string* (uiop:read-file-string "/etc/protocols")
"String containing the contents of /etc/protocols.")
;; Define what our application will do at runtime.