2024-09-05 14:46:05 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
2024-09-05 16:41:04 -07:00
|
|
|
SBCL=${SBCL:-sbcl}
|
|
|
|
|
2024-09-05 15:55:11 -07:00
|
|
|
# Use Quicklisp instead of ASDF to silence the output
|
2024-09-05 16:41:04 -07:00
|
|
|
exec ${SBCL} --noinform \
|
|
|
|
--eval '(format *error-output* "Loading systems...~%")' \
|
|
|
|
--eval '(ql:quickload :truth-table/web :silent t)' \
|
2024-09-16 03:25:36 -07:00
|
|
|
--eval '(truth-table/web:toplevel)' - "${@}"
|