RosettaCodeData/Task/Read-entire-file/LiveCode/read-entire-file-2.livecode

7 lines
210 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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