Initial commit

This commit is contained in:
2024-09-03 17:50:58 -07:00
commit 62347e8b4d
5 changed files with 1681 additions and 0 deletions

15
build.lisp Normal file
View File

@ -0,0 +1,15 @@
(ql:quickload '(:uiop :with-user-abort))
(load "truth-table.lisp")
#+sbcl
(progn
(sb-ext:disable-debugger)
(sb-ext:save-lisp-and-die
"truth-table"
:toplevel 'truth-table:toplevel
:save-runtime-options t
:executable t))
#-sbcl
(error "I only know how to build under SBCL")