Hash : e15cb585 Author : Thomas de Grivel Date : 2017-06-17T18:33:33
Download
1 2 3 4 5 6 7 8 9 10 11 12 13 14
(in-package :common-lisp-user) (defpackage :fd-stream.test (:use :common-lisp :cl-stream :fd-stream) #.(cl-stream:shadowing-import-from)) (in-package :fd-stream.test) (with-stream (s (open-file "/tmp/test")) (dotimes (i 100) (write s i)))