Search found 1 match
- Sun Mar 23, 2014 1:03 pm
- Forum: Common Lisp
- Topic: WITH-STANDARD-IO-SYNTAX in the gcl
- Replies: 1
- Views: 4616
WITH-STANDARD-IO-SYNTAX in the gcl
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): (defun save-db (filename) (with-open-file (out filename :direction :output :if-exists :supersede) (with-standard-io-syntax (print *db* out)))) Result: >(save-db...