You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
;;;; cl-bible.lisp |
|
|
|
(in-package #:cl-bible) |
|
|
|
(defun start () |
|
(initialize #'c:on-new-window) |
|
(open-browser)) |
|
|
|
(defun main () |
|
(start) |
|
(loop)) |
|
|
|
(defun build () |
|
(sb-ext:save-lisp-and-die "bible" :executable t :toplevel #'main))
|
|
|