RosettaCodeData/Task/Text-processing-1/NewLISP/text-processing-1-1.l

4 lines
109 B
Text
Raw Permalink Normal View History

2024-10-16 18:07:41 -07:00
(let (handle (open "readings.txt" "read"))
(setq all-lines (collect (read-line handle)))
(close handle))