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

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
LISP ?= sbcl
all: truth-table
truth-table: build.lisp truth-table.lisp
$(LISP) --load build.lisp
clean:
rm -f truth-table
.PHONY: all clean