+ Example did not close open files

This commit is contained in:
michael 1998-09-28 13:00:31 +00:00
parent 8772ddfc7b
commit ba17acc6a8

View File

@ -20,4 +20,6 @@ begin
Until (NumRead=0) or (NumWritten<>NumRead);
Write ('Copied ',Total,' bytes from file ',paramstr(1));
Writeln (' to file ',paramstr(2));
close(fin);
close(fout);
end.