RosettaCodeData/Task/Create-a-file/Common-Lisp/create-a-file-2.lisp
2023-07-01 13:44:08 -04:00

3 lines
87 B
Common Lisp

(with-open-file (stream "output.txt" :direction :output)
;; use the stream here
)