1
0
mirror of https://github.com/janet-lang/janet synced 2025-12-03 23:28:08 +00:00

file/linex now only acceps a file, not a path name

This commit is contained in:
Ico Doornekamp
2023-05-26 17:50:26 +02:00
parent 64e3cdeb2b
commit 09345ec786
2 changed files with 9 additions and 13 deletions

View File

@@ -110,8 +110,9 @@
(defer (:close outstream)
(:write outstream buf1))
(var buf2 "")
(each line (file/lines "unique.txt")
(set buf2 (string buf2 line)))
(with [f (file/open "unique.txt" :r)]
(each line (file/lines f)
(set buf2 (string buf2 line))))
(assert (= buf1 buf2) "file/lines iterator")
(os/rm "unique.txt"))