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.

18 lines
347 B

2 years ago
;;;; cl-bible.lisp
(in-package #:cl-bible)
(defun start ()
(initialize #'c:on-new-window)
2 years ago
(open-browser))
2 years ago
(defun main ()
(start)
(loop))
(defun build ()
2 years ago
(mapc (lambda (verse)
(setf (cl-bible.verse:notes verse) nil))
cl-bible.data:*bible*)
#+sbcl (sb-ext:save-lisp-and-die "bible" :executable t :toplevel #'main))