RosettaCodeData/Task/Read-entire-file/LiveCode/read-entire-file-2.livecode
2023-07-01 13:44:08 -04:00

6 lines
210 B
Text

local tFile,tLinecount
put "/usr/share/dict/words" into tFile
open file tFile for text read
read from file tFile until EOF
put the number of lines of it -- file contents held in "it" variable
close file tFile