mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 10:49:31 +02:00
19 lines
236 B
ObjectPascal
19 lines
236 B
ObjectPascal
{$mode iso}
|
|
var
|
|
f : file of byte;
|
|
b : byte;
|
|
begin
|
|
rewrite(f,'tisoext1.tmp');
|
|
write(f,123);
|
|
close(f);
|
|
b:=0;
|
|
reset(f,'tisoext1.tmp');
|
|
read(f,b);
|
|
if b<>123 then
|
|
halt(1);
|
|
close(f);
|
|
erase(f);
|
|
writeln('ok');
|
|
end.
|
|
|