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