Linux, gcl.
I read the "Practical Common Lisp" book and try to use its code. I get the problem for the next code (from the book):
I read the "Practical Common Lisp" book and try to use its code. I get the problem for the next code (from the book):
(defun save-db (filename)
(with-open-file (out filename
:direction :output
:if-exists :supersede)
(with-standard-io-syntax
(print *db* out))))
Result:
>(save-db "www")Is the WITH-STANDARD-IO-SYNTAX undefined for the gcl?
Error: The function WITH-STANDARD-IO-SYNTAX is undefined.
Fast links are on: do (si::use-fast-links nil) for debugging
Error signalled by PROGN.
Broken at PROGN. Type :H for Help.