Hey, I seem to run into a problem with variables every now and then. Generally, when I run a loop and read from a file, I *might* get a problem.
The snippit of code I've narrowed it down to is below:
for l := 1 to 9 do
begin
write(l,' ');
blockread(f,bi,4); //bug here
end;
whereas l and bi...