|
Contents | Previous | Next | Subchapters |
| Syntax |
eof(file_name) |
| See Also | read , write , close |
temp.dat is located in the
current working directory
and contains
1 0
0 1
and you enter
f = "temp.dat"
while not eof(f) begin
print read(f, "int")
end
O-Matrix will respond
[ 0 , 1 ]
[ 1 , 0 ]