I wrote my first SBCl Lisp program, which will be execute from the command line. I use the following command for execution:
sbcl --noinform --noprint --load processfile.fasl --eval '(progn (parse_graph "infile.txt" 3 4) (sb-ext:quit))'
And it works fine with one exception. I use
(ql:quickload "split-sequence")
For sequence splitting, and the program outputs:
To load "split-sequence":
Load 1 ASDF system:
split-sequence
; Loading "split-sequence"
at the beginning of each run. How does one disable this annoying text?
Thank you very much!