File streams must be closed
File may appear to be empty until you close it
with-open-file is the preferred way to open and close a stream
(let ((stream (open "c:\\junk.txt"
(print 'hello-world stream)
(with-open-file (stream "c:\\junk.txt"
(print 'hello-world stream))