io.lines ([filename, ···])
Opens the given file name in read mode and returns an iterator function that works like file:lines(···)
over the opened file. When the iterator function detects the end of file, it returns no values (to finish the loop) and automatically closes the file.
The call io.lines()
(with no file name) is equivalent to io.input():lines("*l")
; that is, it iterates over the lines of the default input file. In this case it does not close the file when the loop ends.
In case of errors this function raises the error, instead of returning an error code.
Please login to continue.