truth-table/truth-table-web-wrapper

8 lines
272 B
Plaintext
Raw Normal View History

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