RosettaCodeData/Task/Read-entire-file/LiveCode/read-entire-file-2.livecode
2016-12-05 23:44:36 +01: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