6 lines
210 B
Text
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
|