3 lines
88 B
Text
3 lines
88 B
Text
stream = OpenRead["file.txt"];
|
|
While[a != EndOfFile, Read[stream, Word]];
|
|
Close[stream]
|